FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
atom/static/buttons.less at master · bryanhelmig/atom · GitHub
bryanhelmig
/
atom
Public
forked from
atom/atom
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
atom
/
static
/
buttons.less
Copy path
More file actions
More file actions
Latest commit
History
History
History
78 lines (71 loc) · 1.8 KB
Breadcrumbs
atom
/
static
/
buttons.less
Copy path
File metadata and controls
78 lines (71 loc) · 1.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import
"
ui-variables
"
;
.btn
{
color
:
@text-color
;
border-radius
:
@component-border-radius
;
border
:
none
;
text-shadow
:
none
;
height
:
@component-line-height
+
2
px
;
line-height
:
@component-line-height
;
padding
:
0
@component-padding
;
font-size
:
@font-size
;
z-index
:
0
;
background-color
:
@button-background-color
;
&
:hover
{
background-color
:
@button-background-color-hover
;
}
&
.selected
,
&
.selected
:hover
{
//
we want the selected button to behave like the :hover button; it's on top of the other buttons.
z-index
:
1
;
background-color
:
@button-background-color-selected
;
}
}
.btn.btn-xs
,
.btn-group-xs
>
.btn
{
padding
:
@component-padding
/
4
@component-padding
/
2
;
font-size
:
@font-size
-
2
px
;
height
:
auto
;
line-height
:
1.3
em
;
}
.btn.btn-sm
,
.btn-group-sm
>
.btn
{
padding
:
@component-padding
/
4
@component-padding
/
2
;
height
:
auto
;
line-height
:
1.3
em
;
}
.btn.btn-lg
,
.btn-group-lg
>
.btn
{
font-size
:
@font-size
+
2
px
;
padding
:
@component-padding
-
2
px
@component-padding
+
2
px
;
height
:
auto
;
line-height
:
1.3
em
;
}
.btn-group
>
.btn
{
border-left
:
1
px
solid
@button-border-color
;
border-right
:
1
px
solid
@button-border-color
;
}
.btn-group
>
.btn
:first-child
{
border-left
:
none
;
border-top-left-radius
:
@component-border-radius
;
border-bottom-left-radius
:
@component-border-radius
;
}
.btn-group
>
.btn
:last-child
,
.btn-group
>
.btn.selected
:last-child
,
.btn-group
>
.dropdown-toggle
{
border-right
:
none
;
border-top-right-radius
:
@component-border-radius
;
border-bottom-right-radius
:
@component-border-radius
;
}
.btn-toolbar
{
>
.btn-group
+
.btn-group
,
>
.btn-group
+
.btn
,
>
.btn
+
.btn
{
float
:
none
;
display
:
inline-block
;
margin-left
:
0
;
}
>
*
{
margin-right
:
@component-padding
/
2
;
}
>
*
:last-child
{
margin-right
:
0
;
}
}
Back
|
FazBrowse Home
|
New Git URL