Lines 10-22
$table-odd-row: #F9F9F9;
Link Here
|
10 |
border-color: #ADADAD #ADADAD #949494; |
10 |
border-color: #ADADAD #ADADAD #949494; |
11 |
border-radius: 4px; |
11 |
border-radius: 4px; |
12 |
border-width: 1px; |
12 |
border-width: 1px; |
|
|
13 |
box-shadow: none; |
13 |
color: #333333; |
14 |
color: #333333; |
14 |
display: inline-block; |
15 |
display: inline-block; |
15 |
font-size: inherit; |
16 |
font-size: inherit; |
|
|
17 |
height: unset; |
16 |
line-height: 1.42857143; |
18 |
line-height: 1.42857143; |
17 |
padding: .3em .8em; |
19 |
padding: .3em .8em; |
18 |
text-align: center; |
20 |
text-align: center; |
19 |
text-shadow: 0 1px 0 #fff; |
21 |
text-shadow: 0 1px 0 #fff; |
|
|
22 |
transition: none; |
20 |
vertical-align: middle; |
23 |
vertical-align: middle; |
21 |
white-space: nowrap; |
24 |
white-space: nowrap; |
22 |
|
25 |
|
Lines 29-32
$table-odd-row: #F9F9F9;
Link Here
|
29 |
background: #EEE none; |
32 |
background: #EEE none; |
30 |
border: 1px solid #C0C0C0; |
33 |
border: 1px solid #C0C0C0; |
31 |
color: #999; |
34 |
color: #999; |
|
|
35 |
} |
36 |
|
37 |
@mixin default-input { |
38 |
background-color: #fff; |
39 |
background-image: none; |
40 |
border: 1px solid #aaa; |
41 |
border-radius: 3px; |
42 |
box-shadow: inset 0 1px 1px rgba(0,0,0,.075); |
43 |
display: inline-block; |
44 |
font-size: inherit; |
45 |
height: 26px; |
46 |
line-height: 1.42857143; |
47 |
padding: 4px 7px; |
48 |
transition: border-color ease-in-out .05s,box-shadow ease-in-out .05s; |
49 |
} |
50 |
|
51 |
@mixin default-input-focus { |
52 |
border-color: #538200; |
53 |
outline: 0; |
54 |
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 3px rgba(83, 130, 0, .6); |
32 |
} |
55 |
} |