compass-bootstrap 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.mkdn +9 -3
- data/lib/compass-bootstrap.rb +1 -1
- data/lib/compass-bootstrap/version.rb +1 -1
- data/stylesheets/compass-bootstrap/_compass_bootstrap.scss +26 -0
- data/stylesheets/compass-bootstrap/_forms.scss +393 -0
- data/stylesheets/compass-bootstrap/_patterns.scss +818 -0
- data/stylesheets/compass-bootstrap/_preboot.scss +276 -0
- data/stylesheets/compass-bootstrap/_reset.scss +137 -0
- data/stylesheets/compass-bootstrap/_scaffolding.scss +110 -0
- data/stylesheets/compass-bootstrap/_tables.scss +148 -0
- data/stylesheets/compass-bootstrap/_type.scss +188 -0
- data/templates/project/_forms.scss +393 -0
- data/templates/project/_patterns.scss +818 -0
- data/templates/project/_preboot.scss +276 -0
- data/templates/project/_reset.scss +137 -0
- data/templates/project/_scaffolding.scss +110 -0
- data/templates/project/_tables.scss +148 -0
- data/templates/project/_type.scss +188 -0
- data/templates/project/compass_bootstrap.scss +26 -0
- data/templates/project/manifest.rb +11 -0
- data/templates/project/screen.sass +0 -0
- metadata +19 -5
- data/stylesheets/_compass_bootstrap.scss +0 -1734
- data/stylesheets/_compass_bootstrap_mixins.scss +0 -43
- data/templates/project/screen.scss +0 -2
@@ -0,0 +1,148 @@
|
|
1
|
+
/*
|
2
|
+
* Tables.scss
|
3
|
+
* Tables for, you guessed it, tabular data
|
4
|
+
* ---------------------------------------- */
|
5
|
+
|
6
|
+
|
7
|
+
// BASELINE STYLES
|
8
|
+
// ---------------
|
9
|
+
|
10
|
+
table {
|
11
|
+
width: 100%;
|
12
|
+
margin-bottom: $baseline;
|
13
|
+
padding: 0;
|
14
|
+
border-collapse: separate;
|
15
|
+
font-size: 13px;
|
16
|
+
th, td {
|
17
|
+
padding: 10px 10px 9px;
|
18
|
+
line-height: $baseline * .75;
|
19
|
+
text-align: left;
|
20
|
+
vertical-align: middle;
|
21
|
+
border-bottom: 1px solid #ddd;
|
22
|
+
}
|
23
|
+
th {
|
24
|
+
padding-top: 9px;
|
25
|
+
font-weight: bold;
|
26
|
+
border-bottom-width: 2px;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
// ZEBRA-STRIPING
|
32
|
+
// --------------
|
33
|
+
|
34
|
+
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
35
|
+
.zebra-striped {
|
36
|
+
tbody {
|
37
|
+
tr:nth-child(odd) td {
|
38
|
+
background-color: #f9f9f9;
|
39
|
+
}
|
40
|
+
tr:hover td {
|
41
|
+
background-color: #f5f5f5;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
// Tablesorting styles w/ jQuery plugin
|
46
|
+
.header {
|
47
|
+
cursor: pointer;
|
48
|
+
&:after {
|
49
|
+
content: "";
|
50
|
+
float: right;
|
51
|
+
margin-top: 7px;
|
52
|
+
border-width: 0 4px 4px;
|
53
|
+
border-style: solid;
|
54
|
+
border-color: #000 transparent;
|
55
|
+
visibility: hidden;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
// Style the sorted column headers (THs)
|
59
|
+
.headerSortUp,
|
60
|
+
.headerSortDown {
|
61
|
+
background-color: rgba(141,192,219,.25);
|
62
|
+
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
63
|
+
@include border-radius(3px 3px 0 0);
|
64
|
+
}
|
65
|
+
// Style the ascending (reverse alphabetical) column header
|
66
|
+
.header:hover {
|
67
|
+
&:after {
|
68
|
+
visibility:visible;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
// Style the descending (alphabetical) column header
|
72
|
+
.headerSortDown,
|
73
|
+
.headerSortDown:hover {
|
74
|
+
&:after {
|
75
|
+
visibility:visible;
|
76
|
+
@include bt-opacity(60);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
// Style the ascending (reverse alphabetical) column header
|
80
|
+
.headerSortUp {
|
81
|
+
&:after {
|
82
|
+
border-bottom: none;
|
83
|
+
border-left: 4px solid transparent;
|
84
|
+
border-right: 4px solid transparent;
|
85
|
+
border-top: 4px solid #000;
|
86
|
+
visibility:visible;
|
87
|
+
@include bt-box-shadow(none); //can't add boxshadow to downward facing arrow :(
|
88
|
+
@include bt-opacity(60);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
table {
|
94
|
+
// Blue Table Headings
|
95
|
+
.blue {
|
96
|
+
color: $blue;
|
97
|
+
border-bottom-color: $blue;
|
98
|
+
}
|
99
|
+
.headerSortUp.blue,
|
100
|
+
.headerSortDown.blue {
|
101
|
+
background-color: lighten($blue, 40%);
|
102
|
+
}
|
103
|
+
// Green Table Headings
|
104
|
+
.green {
|
105
|
+
color: $green;
|
106
|
+
border-bottom-color: $green;
|
107
|
+
}
|
108
|
+
.headerSortUp.green,
|
109
|
+
.headerSortDown.green {
|
110
|
+
background-color: lighten($green, 40%);
|
111
|
+
}
|
112
|
+
// Red Table Headings
|
113
|
+
.red {
|
114
|
+
color: $red;
|
115
|
+
border-bottom-color: $red;
|
116
|
+
}
|
117
|
+
.headerSortUp.red,
|
118
|
+
.headerSortDown.red {
|
119
|
+
background-color: lighten($red, 50%);
|
120
|
+
}
|
121
|
+
// Yellow Table Headings
|
122
|
+
.yellow {
|
123
|
+
color: $yellow;
|
124
|
+
border-bottom-color: $yellow;
|
125
|
+
}
|
126
|
+
.headerSortUp.yellow,
|
127
|
+
.headerSortDown.yellow {
|
128
|
+
background-color: lighten($yellow, 40%);
|
129
|
+
}
|
130
|
+
// Orange Table Headings
|
131
|
+
.orange {
|
132
|
+
color: $orange;
|
133
|
+
border-bottom-color: $orange;
|
134
|
+
}
|
135
|
+
.headerSortUp.orange,
|
136
|
+
.headerSortDown.orange {
|
137
|
+
background-color: lighten($orange, 40%);
|
138
|
+
}
|
139
|
+
// Purple Table Headings
|
140
|
+
.purple {
|
141
|
+
color: $purple;
|
142
|
+
border-bottom-color: $purple;
|
143
|
+
}
|
144
|
+
.headerSortUp.purple,
|
145
|
+
.headerSortDown.purple {
|
146
|
+
background-color: lighten($purple, 40%);
|
147
|
+
}
|
148
|
+
}
|
@@ -0,0 +1,188 @@
|
|
1
|
+
/* Typography.scss
|
2
|
+
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
3
|
+
* ---------------------------------------------------------------------------------------- */
|
4
|
+
|
5
|
+
|
6
|
+
// BODY TEXT
|
7
|
+
// ---------
|
8
|
+
|
9
|
+
p {
|
10
|
+
@include shorthand(normal,$basefont,$baseline);
|
11
|
+
margin-bottom: $baseline / 2;
|
12
|
+
small {
|
13
|
+
font-size: $basefont - 2;
|
14
|
+
color: $grayLight;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
// HEADINGS
|
20
|
+
// --------
|
21
|
+
|
22
|
+
h1, h2, h3, h4, h5, h6 {
|
23
|
+
font-weight: bold;
|
24
|
+
color: $grayDark;
|
25
|
+
small {
|
26
|
+
color: $grayLight;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
h1 {
|
30
|
+
margin-bottom: $baseline;
|
31
|
+
font-size: 30px;
|
32
|
+
line-height: $baseline * 2;
|
33
|
+
small {
|
34
|
+
font-size: 18px;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
h2 {
|
38
|
+
font-size: 24px;
|
39
|
+
line-height: $baseline * 2;
|
40
|
+
small {
|
41
|
+
font-size: 14px;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
h3, h4, h5, h6 {
|
45
|
+
line-height: $baseline * 2;
|
46
|
+
}
|
47
|
+
h3 {
|
48
|
+
font-size: 18px;
|
49
|
+
small {
|
50
|
+
font-size: 14px;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
h4 {
|
54
|
+
font-size: 16px;
|
55
|
+
small {
|
56
|
+
font-size: 12px;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
h5 {
|
60
|
+
font-size: 14px;
|
61
|
+
}
|
62
|
+
h6 {
|
63
|
+
font-size: 13px;
|
64
|
+
color: $grayLight;
|
65
|
+
text-transform: uppercase;
|
66
|
+
}
|
67
|
+
|
68
|
+
|
69
|
+
// COLORS
|
70
|
+
// ------
|
71
|
+
|
72
|
+
// Unordered and Ordered lists
|
73
|
+
ul, ol {
|
74
|
+
margin: 0 0 $baseline 25px;
|
75
|
+
}
|
76
|
+
ul ul,
|
77
|
+
ul ol,
|
78
|
+
ol ol,
|
79
|
+
ol ul {
|
80
|
+
margin-bottom: 0;
|
81
|
+
}
|
82
|
+
ul {
|
83
|
+
list-style: disc;
|
84
|
+
}
|
85
|
+
ol {
|
86
|
+
list-style: decimal;
|
87
|
+
}
|
88
|
+
li {
|
89
|
+
line-height: $baseline;
|
90
|
+
color: $gray;
|
91
|
+
}
|
92
|
+
ul.unstyled {
|
93
|
+
list-style: none;
|
94
|
+
margin-left: 0;
|
95
|
+
}
|
96
|
+
|
97
|
+
// Description Lists
|
98
|
+
dl {
|
99
|
+
margin-bottom: $baseline;
|
100
|
+
dt, dd {
|
101
|
+
line-height: $baseline;
|
102
|
+
}
|
103
|
+
dt {
|
104
|
+
font-weight: bold;
|
105
|
+
}
|
106
|
+
dd {
|
107
|
+
margin-left: $baseline / 2;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
// MISC
|
112
|
+
// ----
|
113
|
+
|
114
|
+
// Horizontal rules
|
115
|
+
hr {
|
116
|
+
margin: 0 0 19px;
|
117
|
+
border: 0;
|
118
|
+
border-bottom: 1px solid #eee;
|
119
|
+
}
|
120
|
+
|
121
|
+
// Emphasis
|
122
|
+
strong {
|
123
|
+
font-style: inherit;
|
124
|
+
font-weight: bold;
|
125
|
+
line-height: inherit;
|
126
|
+
}
|
127
|
+
em {
|
128
|
+
font-style: italic;
|
129
|
+
font-weight: inherit;
|
130
|
+
line-height: inherit;
|
131
|
+
}
|
132
|
+
.muted {
|
133
|
+
color: $grayLight;
|
134
|
+
}
|
135
|
+
|
136
|
+
// Blockquotes
|
137
|
+
blockquote {
|
138
|
+
margin-bottom: $baseline;
|
139
|
+
border-left: 5px solid #eee;
|
140
|
+
padding-left: 15px;
|
141
|
+
p {
|
142
|
+
@include shorthand(300,14px,$baseline);
|
143
|
+
margin-bottom: 0;
|
144
|
+
}
|
145
|
+
small {
|
146
|
+
display: block;
|
147
|
+
@include shorthand(300,12px,$baseline);
|
148
|
+
color: $grayLight;
|
149
|
+
&:before {
|
150
|
+
content: '\2014 \00A0';
|
151
|
+
}
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
// Addresses
|
156
|
+
address {
|
157
|
+
display: block;
|
158
|
+
line-height: $baseline;
|
159
|
+
margin-bottom: $baseline;
|
160
|
+
}
|
161
|
+
|
162
|
+
// Inline and block code styles
|
163
|
+
code, pre {
|
164
|
+
padding: 0 3px 2px;
|
165
|
+
font-family: Monaco, Andale Mono, Courier New, monospace;
|
166
|
+
font-size: 12px;
|
167
|
+
@include border-radius(3px);
|
168
|
+
}
|
169
|
+
code {
|
170
|
+
background-color: lighten($orange, 40%);
|
171
|
+
color: rgba(0,0,0,.75);
|
172
|
+
padding: 1px 3px;
|
173
|
+
}
|
174
|
+
pre {
|
175
|
+
background-color: #f5f5f5;
|
176
|
+
display: block;
|
177
|
+
padding: $baseline - 1;
|
178
|
+
margin: 0 0 $baseline;
|
179
|
+
line-height: $baseline;
|
180
|
+
font-size: 12px;
|
181
|
+
border: 1px solid #ccc;
|
182
|
+
border: 1px solid rgba(0,0,0,.15);
|
183
|
+
@include border-radius(3px);
|
184
|
+
white-space: pre;
|
185
|
+
white-space: pre-wrap;
|
186
|
+
word-wrap: break-word;
|
187
|
+
|
188
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*!
|
2
|
+
* this is a port to SCSS version of the bootstrap less
|
3
|
+
|
4
|
+
* ==========================================
|
5
|
+
* Bootstrap @VERSION
|
6
|
+
*
|
7
|
+
* Copyright 2011 Twitter, Inc
|
8
|
+
* Licensed under the Apache License v2.0
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
12
|
+
* Date: @DATE
|
13
|
+
*/
|
14
|
+
|
15
|
+
// CSS Reset
|
16
|
+
@import "reset.scss";
|
17
|
+
|
18
|
+
// Core
|
19
|
+
@import "preboot.scss";
|
20
|
+
@import "scaffolding.scss";
|
21
|
+
|
22
|
+
// Styled patterns and elements
|
23
|
+
@import "type.scss";
|
24
|
+
@import "forms.scss";
|
25
|
+
@import "tables.scss";
|
26
|
+
@import "patterns.scss";
|
@@ -1,2 +1,13 @@
|
|
1
1
|
# Make sure you list all the project template files here in the manifest.
|
2
2
|
stylesheet 'screen.sass', :media => 'screen, projection'
|
3
|
+
stylesheet 'compass_bootstrap.scss', :media => 'screen, projection'
|
4
|
+
stylesheet '_reset.scss', :media => 'screen, projection'
|
5
|
+
stylesheet '_preboot.scss', :media => 'screen, projection'
|
6
|
+
stylesheet '_scaffolding.scss', :media => 'screen, projection'
|
7
|
+
stylesheet '_type.scss', :media => 'screen, projection'
|
8
|
+
stylesheet '_tables.scss', :media => 'screen, projection'
|
9
|
+
stylesheet '_forms.scss', :media => 'screen, projection'
|
10
|
+
stylesheet '_patterns.scss', :media => 'screen, projection'
|
11
|
+
|
12
|
+
description "SCSS port of less version of twitter bootstrap"
|
13
|
+
|
File without changes
|
metadata
CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 0.0.2
|
10
|
+
version: 0.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Hector Bustillos
|
@@ -50,10 +50,24 @@ files:
|
|
50
50
|
- compass-bootstrap.gemspec
|
51
51
|
- lib/compass-bootstrap.rb
|
52
52
|
- lib/compass-bootstrap/version.rb
|
53
|
-
- stylesheets/_compass_bootstrap.scss
|
54
|
-
- stylesheets/
|
53
|
+
- stylesheets/compass-bootstrap/_compass_bootstrap.scss
|
54
|
+
- stylesheets/compass-bootstrap/_forms.scss
|
55
|
+
- stylesheets/compass-bootstrap/_patterns.scss
|
56
|
+
- stylesheets/compass-bootstrap/_preboot.scss
|
57
|
+
- stylesheets/compass-bootstrap/_reset.scss
|
58
|
+
- stylesheets/compass-bootstrap/_scaffolding.scss
|
59
|
+
- stylesheets/compass-bootstrap/_tables.scss
|
60
|
+
- stylesheets/compass-bootstrap/_type.scss
|
61
|
+
- templates/project/_forms.scss
|
62
|
+
- templates/project/_patterns.scss
|
63
|
+
- templates/project/_preboot.scss
|
64
|
+
- templates/project/_reset.scss
|
65
|
+
- templates/project/_scaffolding.scss
|
66
|
+
- templates/project/_tables.scss
|
67
|
+
- templates/project/_type.scss
|
68
|
+
- templates/project/compass_bootstrap.scss
|
55
69
|
- templates/project/manifest.rb
|
56
|
-
- templates/project/screen.
|
70
|
+
- templates/project/screen.sass
|
57
71
|
homepage: https://github.com/hecbuma/compass-bootstrap
|
58
72
|
licenses: []
|
59
73
|
|
@@ -1,1734 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* Bootstrap v1.2.0
|
3
|
-
*
|
4
|
-
* Copyright 2011 Twitter, Inc
|
5
|
-
* Licensed under the Apache License v2.0
|
6
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
-
*
|
8
|
-
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
* Date: Mon Sep 12 09:25:40 PDT 2011
|
10
|
-
*/
|
11
|
-
/* Reset.less
|
12
|
-
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
13
|
-
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
|
14
|
-
|
15
|
-
html, body {
|
16
|
-
margin: 0;
|
17
|
-
padding: 0; }
|
18
|
-
|
19
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
|
20
|
-
margin: 0;
|
21
|
-
padding: 0;
|
22
|
-
border: 0;
|
23
|
-
font-weight: normal;
|
24
|
-
font-style: normal;
|
25
|
-
font-size: 100%;
|
26
|
-
line-height: 1;
|
27
|
-
font-family: inherit; }
|
28
|
-
|
29
|
-
table {
|
30
|
-
border-collapse: collapse;
|
31
|
-
border-spacing: 0; }
|
32
|
-
|
33
|
-
ol, ul {
|
34
|
-
list-style: none; }
|
35
|
-
|
36
|
-
q {
|
37
|
-
&:before, &:after {
|
38
|
-
content: ""; } }
|
39
|
-
|
40
|
-
blockquote {
|
41
|
-
&:before, &:after {
|
42
|
-
content: ""; } }
|
43
|
-
|
44
|
-
html {
|
45
|
-
overflow-y: scroll;
|
46
|
-
font-size: 100%;
|
47
|
-
-webkit-text-size-adjust: 100%;
|
48
|
-
-ms-text-size-adjust: 100%; }
|
49
|
-
|
50
|
-
a:focus {
|
51
|
-
outline: thin dotted; }
|
52
|
-
|
53
|
-
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
|
54
|
-
display: block; }
|
55
|
-
|
56
|
-
audio, canvas, video {
|
57
|
-
display: inline-block;
|
58
|
-
*display: inline;
|
59
|
-
*zoom: 1; }
|
60
|
-
|
61
|
-
audio:not([controls]) {
|
62
|
-
display: none; }
|
63
|
-
|
64
|
-
sub {
|
65
|
-
font-size: 75%;
|
66
|
-
line-height: 0;
|
67
|
-
position: relative;
|
68
|
-
vertical-align: baseline; }
|
69
|
-
|
70
|
-
sup {
|
71
|
-
font-size: 75%;
|
72
|
-
line-height: 0;
|
73
|
-
position: relative;
|
74
|
-
vertical-align: baseline;
|
75
|
-
top: -0.5em; }
|
76
|
-
|
77
|
-
sub {
|
78
|
-
bottom: -0.25em; }
|
79
|
-
|
80
|
-
img {
|
81
|
-
border: 0;
|
82
|
-
-ms-interpolation-mode: bicubic; }
|
83
|
-
|
84
|
-
button, input, select, textarea {
|
85
|
-
font-size: 100%;
|
86
|
-
margin: 0;
|
87
|
-
vertical-align: baseline;
|
88
|
-
*vertical-align: middle; }
|
89
|
-
|
90
|
-
button, input {
|
91
|
-
line-height: normal;
|
92
|
-
*overflow: visible; }
|
93
|
-
|
94
|
-
button::-moz-focus-inner, input::-moz-focus-inner {
|
95
|
-
border: 0;
|
96
|
-
padding: 0; }
|
97
|
-
|
98
|
-
button {
|
99
|
-
cursor: pointer;
|
100
|
-
-webkit-appearance: button; }
|
101
|
-
|
102
|
-
input {
|
103
|
-
&[type="button"], &[type="reset"], &[type="submit"] {
|
104
|
-
cursor: pointer;
|
105
|
-
-webkit-appearance: button; }
|
106
|
-
&[type="search"] {
|
107
|
-
-webkit-appearance: textfield;
|
108
|
-
-webkit-box-sizing: content-box;
|
109
|
-
-moz-box-sizing: content-box;
|
110
|
-
box-sizing: content-box;
|
111
|
-
&::-webkit-search-decoration {
|
112
|
-
-webkit-appearance: none; } } }
|
113
|
-
|
114
|
-
textarea {
|
115
|
-
overflow: auto;
|
116
|
-
vertical-align: top; }
|
117
|
-
|
118
|
-
/* Preboot.less
|
119
|
-
* Variables and mixins to pre-ignite any new web development project
|
120
|
-
* ------------------------------------------------------------------ */
|
121
|
-
|
122
|
-
.clearfix {
|
123
|
-
zoom: 1;
|
124
|
-
&:before {
|
125
|
-
display: table;
|
126
|
-
content: ""; }
|
127
|
-
&:after {
|
128
|
-
display: table;
|
129
|
-
content: "";
|
130
|
-
clear: both; } }
|
131
|
-
|
132
|
-
.center-block {
|
133
|
-
display: block;
|
134
|
-
margin: 0 auto; }
|
135
|
-
|
136
|
-
.container {
|
137
|
-
width: 940px;
|
138
|
-
margin: 0 auto;
|
139
|
-
zoom: 1;
|
140
|
-
&:before {
|
141
|
-
display: table;
|
142
|
-
content: ""; }
|
143
|
-
&:after {
|
144
|
-
display: table;
|
145
|
-
content: "";
|
146
|
-
clear: both; } }
|
147
|
-
|
148
|
-
.btn.danger, .alert-message.danger, .btn.danger:hover, .alert-message.danger:hover, .btn.error, .alert-message.error, .btn.error:hover, .alert-message.error:hover, .btn.success, .alert-message.success, .btn.success:hover, .alert-message.success:hover, .btn.info, .alert-message.info, .btn.info:hover, .alert-message.info:hover {
|
149
|
-
color: #ffffff; }
|
150
|
-
|
151
|
-
.btn.danger, .alert-message.danger, .btn.error, .alert-message.error {
|
152
|
-
background-color: #c43c35;
|
153
|
-
background-repeat: repeat-x;
|
154
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
155
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
156
|
-
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
157
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
158
|
-
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
159
|
-
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
160
|
-
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
161
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
162
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
163
|
-
border-color: #c43c35 #c43c35 #882a25;
|
164
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
|
165
|
-
|
166
|
-
.btn.success, .alert-message.success {
|
167
|
-
background-color: #57a957;
|
168
|
-
background-repeat: repeat-x;
|
169
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
170
|
-
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
171
|
-
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
172
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
|
173
|
-
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
174
|
-
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
175
|
-
background-image: linear-gradient(top, #62c462, #57a957);
|
176
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
|
177
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
178
|
-
border-color: #57a957 #57a957 #3d773d;
|
179
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
|
180
|
-
|
181
|
-
.btn.info, .alert-message.info {
|
182
|
-
background-color: #339bb9;
|
183
|
-
background-repeat: repeat-x;
|
184
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
185
|
-
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
186
|
-
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
187
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
188
|
-
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
189
|
-
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
190
|
-
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
191
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
192
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
193
|
-
border-color: #339bb9 #339bb9 #22697d;
|
194
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
|
195
|
-
|
196
|
-
/*
|
197
|
-
* Scaffolding
|
198
|
-
* Basic and global styles for generating a grid system, structural layout, and page templates
|
199
|
-
* -------------------------------------------------------------------------------------------
|
200
|
-
|
201
|
-
|
202
|
-
*/
|
203
|
-
|
204
|
-
|
205
|
-
.row {
|
206
|
-
zoom: 1;
|
207
|
-
margin-left: -20px;
|
208
|
-
&:before {
|
209
|
-
display: table;
|
210
|
-
content: ""; }
|
211
|
-
&:after {
|
212
|
-
display: table;
|
213
|
-
content: "";
|
214
|
-
clear: both; }
|
215
|
-
[class*="span"] {
|
216
|
-
display: inline;
|
217
|
-
float: left;
|
218
|
-
margin-left: 20px; }
|
219
|
-
.span1 {
|
220
|
-
width: 40px; }
|
221
|
-
.span2 {
|
222
|
-
width: 100px; }
|
223
|
-
.span3 {
|
224
|
-
width: 160px; }
|
225
|
-
.span4 {
|
226
|
-
width: 220px; }
|
227
|
-
.span5 {
|
228
|
-
width: 280px; }
|
229
|
-
.span6 {
|
230
|
-
width: 340px; }
|
231
|
-
.span7 {
|
232
|
-
width: 400px; }
|
233
|
-
.span8 {
|
234
|
-
width: 460px; }
|
235
|
-
.span9 {
|
236
|
-
width: 520px; }
|
237
|
-
.span10 {
|
238
|
-
width: 580px; }
|
239
|
-
.span11 {
|
240
|
-
width: 640px; }
|
241
|
-
.span12 {
|
242
|
-
width: 700px; }
|
243
|
-
.span13 {
|
244
|
-
width: 760px; }
|
245
|
-
.span14 {
|
246
|
-
width: 820px; }
|
247
|
-
.span15 {
|
248
|
-
width: 880px; }
|
249
|
-
.span16 {
|
250
|
-
width: 940px; }
|
251
|
-
.offset1 {
|
252
|
-
margin-left: 80px; }
|
253
|
-
.offset2 {
|
254
|
-
margin-left: 140px; }
|
255
|
-
.offset3 {
|
256
|
-
margin-left: 200px; }
|
257
|
-
.offset4 {
|
258
|
-
margin-left: 260px; }
|
259
|
-
.offset5 {
|
260
|
-
margin-left: 320px; }
|
261
|
-
.offset6 {
|
262
|
-
margin-left: 380px; }
|
263
|
-
.offset7 {
|
264
|
-
margin-left: 440px; }
|
265
|
-
.offset8 {
|
266
|
-
margin-left: 500px; }
|
267
|
-
.offset9 {
|
268
|
-
margin-left: 560px; }
|
269
|
-
.offset10 {
|
270
|
-
margin-left: 620px; }
|
271
|
-
.offset11 {
|
272
|
-
margin-left: 680px; }
|
273
|
-
.offset12 {
|
274
|
-
margin-left: 740px; }
|
275
|
-
.span-one-third {
|
276
|
-
width: 300px; }
|
277
|
-
.span-two-thirds {
|
278
|
-
width: 620px; }
|
279
|
-
.offset-one-third {
|
280
|
-
margin-left: 340px; }
|
281
|
-
.offset-two-thirds {
|
282
|
-
margin-left: 660px; } }
|
283
|
-
|
284
|
-
html {
|
285
|
-
background-color: #fff; }
|
286
|
-
|
287
|
-
body {
|
288
|
-
background-color: #fff;
|
289
|
-
margin: 0;
|
290
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
291
|
-
font-size: 13px;
|
292
|
-
font-weight: normal;
|
293
|
-
line-height: 18px;
|
294
|
-
color: #808080; }
|
295
|
-
|
296
|
-
.container {
|
297
|
-
width: 940px;
|
298
|
-
margin: 0 auto; }
|
299
|
-
|
300
|
-
.container-fluid {
|
301
|
-
padding: 0 20px;
|
302
|
-
zoom: 1;
|
303
|
-
&:before {
|
304
|
-
display: table;
|
305
|
-
content: ""; }
|
306
|
-
&:after {
|
307
|
-
display: table;
|
308
|
-
content: "";
|
309
|
-
clear: both; }
|
310
|
-
> {
|
311
|
-
.sidebar {
|
312
|
-
float: left;
|
313
|
-
width: 220px; }
|
314
|
-
.content {
|
315
|
-
min-width: 700px;
|
316
|
-
max-width: 1180px;
|
317
|
-
margin-left: 240px; } } }
|
318
|
-
|
319
|
-
a {
|
320
|
-
color: #0069d6;
|
321
|
-
text-decoration: none;
|
322
|
-
line-height: inherit;
|
323
|
-
font-weight: inherit;
|
324
|
-
&:hover {
|
325
|
-
color: #0050a3;
|
326
|
-
text-decoration: underline; } }
|
327
|
-
|
328
|
-
/* Typography.less
|
329
|
-
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
330
|
-
* ---------------------------------------------------------------------------------------- */
|
331
|
-
|
332
|
-
p {
|
333
|
-
font-size: 13px;
|
334
|
-
font-weight: normal;
|
335
|
-
line-height: 18px;
|
336
|
-
margin-bottom: 9px;
|
337
|
-
small {
|
338
|
-
font-size: 11px;
|
339
|
-
color: #bfbfbf; } }
|
340
|
-
|
341
|
-
h1, h2, h3, h4, h5, h6 {
|
342
|
-
font-weight: bold;
|
343
|
-
color: #404040; }
|
344
|
-
|
345
|
-
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
346
|
-
color: #bfbfbf; }
|
347
|
-
|
348
|
-
h1 {
|
349
|
-
margin-bottom: 18px;
|
350
|
-
font-size: 30px;
|
351
|
-
line-height: 36px;
|
352
|
-
small {
|
353
|
-
font-size: 18px; } }
|
354
|
-
|
355
|
-
h2 {
|
356
|
-
font-size: 24px;
|
357
|
-
line-height: 36px;
|
358
|
-
small {
|
359
|
-
font-size: 14px; } }
|
360
|
-
|
361
|
-
h3, h4, h5, h6 {
|
362
|
-
line-height: 36px; }
|
363
|
-
|
364
|
-
h3 {
|
365
|
-
font-size: 18px;
|
366
|
-
small {
|
367
|
-
font-size: 14px; } }
|
368
|
-
|
369
|
-
h4 {
|
370
|
-
font-size: 16px;
|
371
|
-
small {
|
372
|
-
font-size: 12px; } }
|
373
|
-
|
374
|
-
h5 {
|
375
|
-
font-size: 14px; }
|
376
|
-
|
377
|
-
h6 {
|
378
|
-
font-size: 13px;
|
379
|
-
color: #bfbfbf;
|
380
|
-
text-transform: uppercase; }
|
381
|
-
|
382
|
-
ul, ol {
|
383
|
-
margin: 0 0 18px 25px; }
|
384
|
-
|
385
|
-
ul {
|
386
|
-
ul, ol {
|
387
|
-
margin-bottom: 0; } }
|
388
|
-
|
389
|
-
ol {
|
390
|
-
ol, ul {
|
391
|
-
margin-bottom: 0; } }
|
392
|
-
|
393
|
-
ul {
|
394
|
-
list-style: disc; }
|
395
|
-
|
396
|
-
ol {
|
397
|
-
list-style: decimal; }
|
398
|
-
|
399
|
-
li {
|
400
|
-
line-height: 18px;
|
401
|
-
color: #808080; }
|
402
|
-
|
403
|
-
ul.unstyled {
|
404
|
-
list-style: none;
|
405
|
-
margin-left: 0; }
|
406
|
-
|
407
|
-
dl {
|
408
|
-
margin-bottom: 18px;
|
409
|
-
dt, dd {
|
410
|
-
line-height: 18px; }
|
411
|
-
dt {
|
412
|
-
font-weight: bold; }
|
413
|
-
dd {
|
414
|
-
margin-left: 9px; } }
|
415
|
-
|
416
|
-
hr {
|
417
|
-
margin: 0 0 19px;
|
418
|
-
border: 0;
|
419
|
-
border-bottom: 1px solid #eee; }
|
420
|
-
|
421
|
-
strong {
|
422
|
-
font-style: inherit;
|
423
|
-
font-weight: bold;
|
424
|
-
line-height: inherit; }
|
425
|
-
|
426
|
-
em {
|
427
|
-
font-style: italic;
|
428
|
-
font-weight: inherit;
|
429
|
-
line-height: inherit; }
|
430
|
-
|
431
|
-
.muted {
|
432
|
-
color: #bfbfbf; }
|
433
|
-
|
434
|
-
blockquote {
|
435
|
-
margin-bottom: 18px;
|
436
|
-
border-left: 5px solid #eee;
|
437
|
-
padding-left: 15px;
|
438
|
-
p {
|
439
|
-
font-size: 14px;
|
440
|
-
font-weight: 300;
|
441
|
-
line-height: 18px;
|
442
|
-
margin-bottom: 0; }
|
443
|
-
small {
|
444
|
-
display: block;
|
445
|
-
font-size: 12px;
|
446
|
-
font-weight: 300;
|
447
|
-
line-height: 18px;
|
448
|
-
color: #bfbfbf;
|
449
|
-
&:before {
|
450
|
-
content: '\2014 \00A0'; } } }
|
451
|
-
|
452
|
-
address {
|
453
|
-
display: block;
|
454
|
-
line-height: 18px;
|
455
|
-
margin-bottom: 18px; }
|
456
|
-
|
457
|
-
code, pre {
|
458
|
-
padding: 0 3px 2px;
|
459
|
-
font-family: Monaco, Andale Mono, Courier New, monospace;
|
460
|
-
font-size: 12px;
|
461
|
-
-webkit-border-radius: 3px;
|
462
|
-
-moz-border-radius: 3px;
|
463
|
-
border-radius: 3px; }
|
464
|
-
|
465
|
-
code {
|
466
|
-
background-color: #fee9cc;
|
467
|
-
color: rgba(0, 0, 0, 0.75);
|
468
|
-
padding: 1px 3px; }
|
469
|
-
|
470
|
-
pre {
|
471
|
-
background-color: #f5f5f5;
|
472
|
-
display: block;
|
473
|
-
padding: 17px;
|
474
|
-
margin: 0 0 18px;
|
475
|
-
line-height: 18px;
|
476
|
-
font-size: 12px;
|
477
|
-
border: 1px solid #ccc;
|
478
|
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
479
|
-
-webkit-border-radius: 3px;
|
480
|
-
-moz-border-radius: 3px;
|
481
|
-
border-radius: 3px;
|
482
|
-
white-space: pre;
|
483
|
-
white-space: pre-wrap;
|
484
|
-
word-wrap: break-word; }
|
485
|
-
|
486
|
-
/* Forms.less
|
487
|
-
* Base styles for various input types, form layouts, and states
|
488
|
-
* ------------------------------------------------------------- */
|
489
|
-
|
490
|
-
form {
|
491
|
-
margin-bottom: 18px; }
|
492
|
-
|
493
|
-
fieldset {
|
494
|
-
margin-bottom: 18px;
|
495
|
-
padding-top: 18px;
|
496
|
-
legend {
|
497
|
-
display: block;
|
498
|
-
margin-left: 150px;
|
499
|
-
font-size: 20px;
|
500
|
-
line-height: 1;
|
501
|
-
*margin: 0 0 5px 145px;
|
502
|
-
/* IE6-7 */
|
503
|
-
*line-height: 1.5;
|
504
|
-
/* IE6-7 */
|
505
|
-
color: #404040; } }
|
506
|
-
|
507
|
-
form .clearfix {
|
508
|
-
margin-bottom: 18px; }
|
509
|
-
|
510
|
-
label, input, select, textarea {
|
511
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
512
|
-
font-size: 13px;
|
513
|
-
font-weight: normal;
|
514
|
-
line-height: normal; }
|
515
|
-
|
516
|
-
label {
|
517
|
-
padding-top: 6px;
|
518
|
-
font-size: 13px;
|
519
|
-
line-height: 18px;
|
520
|
-
float: left;
|
521
|
-
width: 130px;
|
522
|
-
text-align: right;
|
523
|
-
color: #404040; }
|
524
|
-
|
525
|
-
div.input {
|
526
|
-
margin-left: 150px; }
|
527
|
-
|
528
|
-
input {
|
529
|
-
&[type=checkbox], &[type=radio] {
|
530
|
-
cursor: pointer; }
|
531
|
-
display: inline-block;
|
532
|
-
width: 210px;
|
533
|
-
height: 18px;
|
534
|
-
padding: 4px;
|
535
|
-
font-size: 13px;
|
536
|
-
line-height: 18px;
|
537
|
-
color: #808080;
|
538
|
-
border: 1px solid #ccc;
|
539
|
-
-webkit-border-radius: 3px;
|
540
|
-
-moz-border-radius: 3px;
|
541
|
-
border-radius: 3px; }
|
542
|
-
|
543
|
-
textarea, select, .uneditable-input {
|
544
|
-
display: inline-block;
|
545
|
-
width: 210px;
|
546
|
-
height: 18px;
|
547
|
-
padding: 4px;
|
548
|
-
font-size: 13px;
|
549
|
-
line-height: 18px;
|
550
|
-
color: #808080;
|
551
|
-
border: 1px solid #ccc;
|
552
|
-
-webkit-border-radius: 3px;
|
553
|
-
-moz-border-radius: 3px;
|
554
|
-
border-radius: 3px; }
|
555
|
-
|
556
|
-
/* mini reset for non-html5 file types */
|
557
|
-
|
558
|
-
input {
|
559
|
-
&[type=checkbox], &[type=radio] {
|
560
|
-
width: auto;
|
561
|
-
height: auto;
|
562
|
-
padding: 0;
|
563
|
-
margin: 3px 0;
|
564
|
-
*margin-top: 0;
|
565
|
-
/* IE6-7 */
|
566
|
-
line-height: normal;
|
567
|
-
border: none; }
|
568
|
-
&[type=file] {
|
569
|
-
background-color: #fff;
|
570
|
-
padding: initial;
|
571
|
-
border: initial;
|
572
|
-
line-height: initial;
|
573
|
-
-webkit-box-shadow: none;
|
574
|
-
-moz-box-shadow: none;
|
575
|
-
box-shadow: none; }
|
576
|
-
&[type=button], &[type=reset], &[type=submit] {
|
577
|
-
width: auto;
|
578
|
-
height: auto; } }
|
579
|
-
|
580
|
-
select, input[type=file] {
|
581
|
-
height: 27px;
|
582
|
-
line-height: 27px; }
|
583
|
-
|
584
|
-
textarea {
|
585
|
-
height: auto; }
|
586
|
-
|
587
|
-
.uneditable-input {
|
588
|
-
background-color: #eee;
|
589
|
-
display: block;
|
590
|
-
border-color: #ccc;
|
591
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
592
|
-
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
593
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); }
|
594
|
-
|
595
|
-
:-moz-placeholder, ::-webkit-input-placeholder {
|
596
|
-
color: #bfbfbf; }
|
597
|
-
|
598
|
-
input, select, textarea {
|
599
|
-
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
600
|
-
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
601
|
-
transition: border linear 0.2s, box-shadow linear 0.2s;
|
602
|
-
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
|
603
|
-
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
|
604
|
-
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); }
|
605
|
-
|
606
|
-
input:focus, textarea:focus {
|
607
|
-
outline: none;
|
608
|
-
border-color: rgba(82, 168, 236, 0.8);
|
609
|
-
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
|
610
|
-
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
|
611
|
-
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); }
|
612
|
-
|
613
|
-
form div.error {
|
614
|
-
background: #fae5e3;
|
615
|
-
padding: 10px 0;
|
616
|
-
margin: -10px 0 10px;
|
617
|
-
-webkit-border-radius: 4px;
|
618
|
-
-moz-border-radius: 4px;
|
619
|
-
border-radius: 4px;
|
620
|
-
> label {
|
621
|
-
color: #9d261d; }
|
622
|
-
span {
|
623
|
-
&.help-inline, &.help-block {
|
624
|
-
color: #9d261d; } }
|
625
|
-
input, textarea {
|
626
|
-
border-color: #c87872;
|
627
|
-
-webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
|
628
|
-
-moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
|
629
|
-
box-shadow: 0 0 3px rgba(171, 41, 32, 0.25); }
|
630
|
-
input:focus, textarea:focus {
|
631
|
-
border-color: #b9554d;
|
632
|
-
-webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
|
633
|
-
-moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
|
634
|
-
box-shadow: 0 0 6px rgba(171, 41, 32, 0.5); }
|
635
|
-
.input-prepend span.add-on, .input-append span.add-on {
|
636
|
-
background: #f4c8c5;
|
637
|
-
border-color: #c87872;
|
638
|
-
color: #b9554d; } }
|
639
|
-
|
640
|
-
.input-mini, input.mini, textarea.mini, select.mini {
|
641
|
-
width: 60px; }
|
642
|
-
|
643
|
-
.input-small, input.small, textarea.small, select.small {
|
644
|
-
width: 90px; }
|
645
|
-
|
646
|
-
.input-medium, input.medium, textarea.medium, select.medium {
|
647
|
-
width: 150px; }
|
648
|
-
|
649
|
-
.input-large, input.large, textarea.large, select.large {
|
650
|
-
width: 210px; }
|
651
|
-
|
652
|
-
.input-xlarge, input.xlarge, textarea.xlarge, select.xlarge {
|
653
|
-
width: 270px; }
|
654
|
-
|
655
|
-
.input-xxlarge, input.xxlarge, textarea.xxlarge, select.xxlarge {
|
656
|
-
width: 530px; }
|
657
|
-
|
658
|
-
textarea.xxlarge {
|
659
|
-
overflow-y: scroll; }
|
660
|
-
|
661
|
-
input[readonly]:focus, textarea[readonly]:focus, input.disabled {
|
662
|
-
background: #f5f5f5;
|
663
|
-
border-color: #ddd;
|
664
|
-
-webkit-box-shadow: none;
|
665
|
-
-moz-box-shadow: none;
|
666
|
-
box-shadow: none; }
|
667
|
-
|
668
|
-
.actions {
|
669
|
-
background: #f5f5f5;
|
670
|
-
margin-top: 18px;
|
671
|
-
margin-bottom: 18px;
|
672
|
-
padding: 17px 20px 18px 150px;
|
673
|
-
border-top: 1px solid #ddd;
|
674
|
-
-webkit-border-radius: 0 0 3px 3px;
|
675
|
-
-moz-border-radius: 0 0 3px 3px;
|
676
|
-
border-radius: 0 0 3px 3px;
|
677
|
-
.secondary-action {
|
678
|
-
float: right;
|
679
|
-
a {
|
680
|
-
line-height: 30px;
|
681
|
-
&:hover {
|
682
|
-
text-decoration: underline; } } } }
|
683
|
-
|
684
|
-
.help-inline, .help-block {
|
685
|
-
font-size: 12px;
|
686
|
-
line-height: 18px;
|
687
|
-
color: #bfbfbf; }
|
688
|
-
|
689
|
-
.help-inline {
|
690
|
-
padding-left: 5px;
|
691
|
-
*position: relative;
|
692
|
-
/* IE6-7 */
|
693
|
-
*top: -5px;
|
694
|
-
/* IE6-7 */ }
|
695
|
-
|
696
|
-
.help-block {
|
697
|
-
display: block;
|
698
|
-
max-width: 600px; }
|
699
|
-
|
700
|
-
.inline-inputs {
|
701
|
-
color: #808080;
|
702
|
-
span {
|
703
|
-
display: inline-block; }
|
704
|
-
input {
|
705
|
-
display: inline-block;
|
706
|
-
&.mini {
|
707
|
-
width: 60px; }
|
708
|
-
&.small {
|
709
|
-
width: 90px; } }
|
710
|
-
span {
|
711
|
-
padding: 0 2px 0 1px; } }
|
712
|
-
|
713
|
-
.input-prepend input, .input-append input {
|
714
|
-
-webkit-border-radius: 0 3px 3px 0;
|
715
|
-
-moz-border-radius: 0 3px 3px 0;
|
716
|
-
border-radius: 0 3px 3px 0; }
|
717
|
-
|
718
|
-
.input-prepend .add-on, .input-append .add-on {
|
719
|
-
background: #f5f5f5;
|
720
|
-
float: left;
|
721
|
-
display: block;
|
722
|
-
width: auto;
|
723
|
-
min-width: 16px;
|
724
|
-
padding: 4px 4px 4px 5px;
|
725
|
-
color: #bfbfbf;
|
726
|
-
font-weight: normal;
|
727
|
-
line-height: 18px;
|
728
|
-
height: 18px;
|
729
|
-
text-align: center;
|
730
|
-
text-shadow: 0 1px 0 #fff;
|
731
|
-
border: 1px solid #ccc;
|
732
|
-
border-right-width: 0;
|
733
|
-
-webkit-border-radius: 3px 0 0 3px;
|
734
|
-
-moz-border-radius: 3px 0 0 3px;
|
735
|
-
border-radius: 3px 0 0 3px; }
|
736
|
-
|
737
|
-
.input-prepend .active, .input-append .active {
|
738
|
-
background: #a9dba9;
|
739
|
-
border-color: #46a546; }
|
740
|
-
|
741
|
-
.input-prepend .add-on {
|
742
|
-
*margin-top: 1px;
|
743
|
-
/* IE6-7 */ }
|
744
|
-
|
745
|
-
.input-append {
|
746
|
-
input {
|
747
|
-
float: left;
|
748
|
-
-webkit-border-radius: 3px 0 0 3px;
|
749
|
-
-moz-border-radius: 3px 0 0 3px;
|
750
|
-
border-radius: 3px 0 0 3px; }
|
751
|
-
.add-on {
|
752
|
-
-webkit-border-radius: 0 3px 3px 0;
|
753
|
-
-moz-border-radius: 0 3px 3px 0;
|
754
|
-
border-radius: 0 3px 3px 0;
|
755
|
-
border-right-width: 1px;
|
756
|
-
border-left-width: 0; } }
|
757
|
-
|
758
|
-
.inputs-list {
|
759
|
-
margin: 0 0 5px;
|
760
|
-
width: 100%;
|
761
|
-
li {
|
762
|
-
display: block;
|
763
|
-
padding: 0;
|
764
|
-
width: 100%;
|
765
|
-
label {
|
766
|
-
display: block;
|
767
|
-
float: none;
|
768
|
-
width: auto;
|
769
|
-
padding: 0;
|
770
|
-
line-height: 18px;
|
771
|
-
text-align: left;
|
772
|
-
white-space: normal;
|
773
|
-
strong {
|
774
|
-
color: #808080; }
|
775
|
-
small {
|
776
|
-
font-size: 12px;
|
777
|
-
font-weight: normal; } }
|
778
|
-
ul.inputs-list {
|
779
|
-
margin-left: 25px;
|
780
|
-
margin-bottom: 10px;
|
781
|
-
padding-top: 0; }
|
782
|
-
&:first-child {
|
783
|
-
padding-top: 5px; } }
|
784
|
-
input {
|
785
|
-
&[type=radio], &[type=checkbox] {
|
786
|
-
margin-bottom: 0; } } }
|
787
|
-
|
788
|
-
.form-stacked {
|
789
|
-
padding-left: 20px;
|
790
|
-
fieldset {
|
791
|
-
padding-top: 9px; }
|
792
|
-
legend {
|
793
|
-
margin-left: 0; }
|
794
|
-
label {
|
795
|
-
display: block;
|
796
|
-
float: none;
|
797
|
-
width: auto;
|
798
|
-
font-weight: bold;
|
799
|
-
text-align: left;
|
800
|
-
line-height: 20px;
|
801
|
-
padding-top: 0; }
|
802
|
-
.clearfix {
|
803
|
-
margin-bottom: 9px;
|
804
|
-
div.input {
|
805
|
-
margin-left: 0; } }
|
806
|
-
.inputs-list {
|
807
|
-
margin-bottom: 0;
|
808
|
-
li {
|
809
|
-
padding-top: 0;
|
810
|
-
label {
|
811
|
-
font-weight: normal;
|
812
|
-
padding-top: 0; } } }
|
813
|
-
div.error {
|
814
|
-
padding-top: 10px;
|
815
|
-
padding-bottom: 10px;
|
816
|
-
padding-left: 10px;
|
817
|
-
margin-top: 0;
|
818
|
-
margin-left: -10px; }
|
819
|
-
.actions {
|
820
|
-
margin-left: -20px;
|
821
|
-
padding-left: 20px; } }
|
822
|
-
|
823
|
-
/*
|
824
|
-
* Tables.less
|
825
|
-
* Tables for, you guessed it, tabular data
|
826
|
-
* ---------------------------------------- */
|
827
|
-
|
828
|
-
table {
|
829
|
-
width: 100%;
|
830
|
-
margin-bottom: 18px;
|
831
|
-
padding: 0;
|
832
|
-
border-collapse: separate;
|
833
|
-
font-size: 13px;
|
834
|
-
th, td {
|
835
|
-
padding: 10px 10px 9px;
|
836
|
-
line-height: 13.5px;
|
837
|
-
text-align: left;
|
838
|
-
vertical-align: middle;
|
839
|
-
border-bottom: 1px solid #ddd; }
|
840
|
-
th {
|
841
|
-
padding-top: 9px;
|
842
|
-
font-weight: bold;
|
843
|
-
border-bottom-width: 2px; } }
|
844
|
-
|
845
|
-
.zebra-striped {
|
846
|
-
tbody tr {
|
847
|
-
&:nth-child(odd) td {
|
848
|
-
background-color: #f9f9f9; }
|
849
|
-
&:hover td {
|
850
|
-
background-color: #f5f5f5; } }
|
851
|
-
.header {
|
852
|
-
cursor: pointer;
|
853
|
-
&:after {
|
854
|
-
content: "";
|
855
|
-
float: right;
|
856
|
-
margin-top: 7px;
|
857
|
-
border-width: 0 4px 4px;
|
858
|
-
border-style: solid;
|
859
|
-
border-color: #000 transparent;
|
860
|
-
visibility: hidden; } }
|
861
|
-
.headerSortUp, .headerSortDown {
|
862
|
-
background-color: rgba(141, 192, 219, 0.25);
|
863
|
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
864
|
-
-webkit-border-radius: 3px 3px 0 0;
|
865
|
-
-moz-border-radius: 3px 3px 0 0;
|
866
|
-
border-radius: 3px 3px 0 0; }
|
867
|
-
.header:hover:after {
|
868
|
-
visibility: visible; }
|
869
|
-
.headerSortDown {
|
870
|
-
&:after, &:hover:after {
|
871
|
-
visibility: visible;
|
872
|
-
filter: alpha(opacity = 60);
|
873
|
-
-khtml-opacity: 0.6;
|
874
|
-
-moz-opacity: 0.6;
|
875
|
-
opacity: 0.6; } }
|
876
|
-
.headerSortUp:after {
|
877
|
-
border-bottom: none;
|
878
|
-
border-left: 4px solid transparent;
|
879
|
-
border-right: 4px solid transparent;
|
880
|
-
border-top: 4px solid #000;
|
881
|
-
visibility: visible;
|
882
|
-
-webkit-box-shadow: none;
|
883
|
-
-moz-box-shadow: none;
|
884
|
-
box-shadow: none;
|
885
|
-
filter: alpha(opacity = 60);
|
886
|
-
-khtml-opacity: 0.6;
|
887
|
-
-moz-opacity: 0.6;
|
888
|
-
opacity: 0.6; } }
|
889
|
-
|
890
|
-
table {
|
891
|
-
.blue {
|
892
|
-
color: #049cdb;
|
893
|
-
border-bottom-color: #049cdb; }
|
894
|
-
.headerSortUp.blue, .headerSortDown.blue {
|
895
|
-
background-color: #ade6fe; }
|
896
|
-
.green {
|
897
|
-
color: #46a546;
|
898
|
-
border-bottom-color: #46a546; }
|
899
|
-
.headerSortUp.green, .headerSortDown.green {
|
900
|
-
background-color: #cdeacd; }
|
901
|
-
.red {
|
902
|
-
color: #9d261d;
|
903
|
-
border-bottom-color: #9d261d; }
|
904
|
-
.headerSortUp.red, .headerSortDown.red {
|
905
|
-
background-color: #f4c8c5; }
|
906
|
-
.yellow {
|
907
|
-
color: #ffc40d;
|
908
|
-
border-bottom-color: #ffc40d; }
|
909
|
-
.headerSortUp.yellow, .headerSortDown.yellow {
|
910
|
-
background-color: #fff6d9; }
|
911
|
-
.orange {
|
912
|
-
color: #f89406;
|
913
|
-
border-bottom-color: #f89406; }
|
914
|
-
.headerSortUp.orange, .headerSortDown.orange {
|
915
|
-
background-color: #fee9cc; }
|
916
|
-
.purple {
|
917
|
-
color: #7a43b6;
|
918
|
-
border-bottom-color: #7a43b6; }
|
919
|
-
.headerSortUp.purple, .headerSortDown.purple {
|
920
|
-
background-color: #e2d5f0; } }
|
921
|
-
|
922
|
-
/* Patterns.less
|
923
|
-
* Repeatable UI elements outside the base styles provided from the scaffolding
|
924
|
-
* ---------------------------------------------------------------------------- */
|
925
|
-
|
926
|
-
.topbar {
|
927
|
-
height: 40px;
|
928
|
-
position: fixed;
|
929
|
-
top: 0;
|
930
|
-
left: 0;
|
931
|
-
right: 0;
|
932
|
-
z-index: 10000;
|
933
|
-
overflow: visible;
|
934
|
-
a {
|
935
|
-
color: #bfbfbf;
|
936
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
937
|
-
&:hover {
|
938
|
-
background-color: #333;
|
939
|
-
background-color: rgba(255, 255, 255, 0.05);
|
940
|
-
color: #ffffff;
|
941
|
-
text-decoration: none; } }
|
942
|
-
ul .active a {
|
943
|
-
background-color: #333;
|
944
|
-
background-color: rgba(255, 255, 255, 0.05);
|
945
|
-
color: #ffffff;
|
946
|
-
text-decoration: none; }
|
947
|
-
h3 {
|
948
|
-
position: relative;
|
949
|
-
a {
|
950
|
-
float: left;
|
951
|
-
display: block;
|
952
|
-
padding: 8px 20px 12px;
|
953
|
-
margin-left: -20px;
|
954
|
-
color: #ffffff;
|
955
|
-
font-size: 20px;
|
956
|
-
font-weight: 200;
|
957
|
-
line-height: 1; } }
|
958
|
-
form {
|
959
|
-
float: left;
|
960
|
-
margin: 5px 0 0 0;
|
961
|
-
position: relative;
|
962
|
-
filter: alpha(opacity = 100);
|
963
|
-
-khtml-opacity: 1;
|
964
|
-
-moz-opacity: 1;
|
965
|
-
opacity: 1; }
|
966
|
-
input {
|
967
|
-
background-color: #444;
|
968
|
-
background-color: rgba(255, 255, 255, 0.3);
|
969
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
970
|
-
font-size: normal;
|
971
|
-
font-weight: 13px;
|
972
|
-
line-height: 1;
|
973
|
-
padding: 4px 9px;
|
974
|
-
color: #fff;
|
975
|
-
color: rgba(255, 255, 255, 0.75);
|
976
|
-
border: 1px solid #111;
|
977
|
-
-webkit-border-radius: 4px;
|
978
|
-
-moz-border-radius: 4px;
|
979
|
-
border-radius: 4px;
|
980
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
|
981
|
-
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
|
982
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
|
983
|
-
-webkit-transition: none;
|
984
|
-
-moz-transition: none;
|
985
|
-
transition: none;
|
986
|
-
&:-moz-placeholder, &::-webkit-input-placeholder {
|
987
|
-
color: #e6e6e6; }
|
988
|
-
&:hover {
|
989
|
-
background-color: #bfbfbf;
|
990
|
-
background-color: rgba(255, 255, 255, 0.5);
|
991
|
-
color: #fff; }
|
992
|
-
&:focus, &.focused {
|
993
|
-
outline: none;
|
994
|
-
background-color: #fff;
|
995
|
-
color: #404040;
|
996
|
-
text-shadow: 0 1px 0 #fff;
|
997
|
-
border: 0;
|
998
|
-
padding: 5px 10px;
|
999
|
-
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1000
|
-
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1001
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); } } }
|
1002
|
-
|
1003
|
-
.topbar-inner {
|
1004
|
-
background-color: #222;
|
1005
|
-
background-color: #222222;
|
1006
|
-
background-repeat: repeat-x;
|
1007
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1008
|
-
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1009
|
-
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1010
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1011
|
-
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1012
|
-
background-image: -o-linear-gradient(top, #333333, #222222);
|
1013
|
-
background-image: linear-gradient(top, #333333, #222222);
|
1014
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1015
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1016
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1017
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
|
1018
|
-
|
1019
|
-
.topbar {
|
1020
|
-
.fill {
|
1021
|
-
background-color: #222;
|
1022
|
-
background-color: #222222;
|
1023
|
-
background-repeat: repeat-x;
|
1024
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1025
|
-
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1026
|
-
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1027
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1028
|
-
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1029
|
-
background-image: -o-linear-gradient(top, #333333, #222222);
|
1030
|
-
background-image: linear-gradient(top, #333333, #222222);
|
1031
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1032
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1033
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1034
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
|
1035
|
-
div > ul {
|
1036
|
-
display: block;
|
1037
|
-
float: left;
|
1038
|
-
margin: 0 10px 0 0;
|
1039
|
-
position: relative;
|
1040
|
-
left: 0; } }
|
1041
|
-
|
1042
|
-
.nav {
|
1043
|
-
display: block;
|
1044
|
-
float: left;
|
1045
|
-
margin: 0 10px 0 0;
|
1046
|
-
position: relative;
|
1047
|
-
left: 0; }
|
1048
|
-
|
1049
|
-
.topbar div > ul > li, .nav > li {
|
1050
|
-
display: block;
|
1051
|
-
float: left; }
|
1052
|
-
|
1053
|
-
.topbar div > ul a, .nav a {
|
1054
|
-
display: block;
|
1055
|
-
float: none;
|
1056
|
-
padding: 10px 10px 11px;
|
1057
|
-
line-height: 19px;
|
1058
|
-
text-decoration: none; }
|
1059
|
-
|
1060
|
-
.topbar div > ul a:hover, .nav a:hover {
|
1061
|
-
color: #fff;
|
1062
|
-
text-decoration: none; }
|
1063
|
-
|
1064
|
-
.topbar div > ul .active a, .nav .active a {
|
1065
|
-
background-color: #222;
|
1066
|
-
background-color: rgba(0, 0, 0, 0.5); }
|
1067
|
-
|
1068
|
-
.topbar div > ul.secondary-nav, .nav.secondary-nav {
|
1069
|
-
float: right;
|
1070
|
-
margin-left: 10px;
|
1071
|
-
margin-right: 0; }
|
1072
|
-
|
1073
|
-
.topbar div > ul.secondary-nav .menu-dropdown, .nav.secondary-nav .menu-dropdown, .topbar div > ul.secondary-nav .dropdown-menu, .nav.secondary-nav .dropdown-menu {
|
1074
|
-
right: 0; }
|
1075
|
-
|
1076
|
-
.topbar div > ul a.menu:hover, .nav a.menu:hover, .topbar div > ul li.open .menu, .nav li.open .menu, .topbar div > ul .dropdown-toggle:hover, .nav .dropdown-toggle:hover, .topbar div > ul .dropdown.open .dropdown-toggle, .nav .dropdown.open .dropdown-toggle {
|
1077
|
-
background: #444;
|
1078
|
-
background: rgba(255, 255, 255, 0.05); }
|
1079
|
-
|
1080
|
-
.topbar div > ul .menu-dropdown, .nav .menu-dropdown, .topbar div > ul .dropdown-menu, .nav .dropdown-menu {
|
1081
|
-
background-color: #333; }
|
1082
|
-
|
1083
|
-
.topbar div > ul .menu-dropdown a.menu, .nav .menu-dropdown a.menu, .topbar div > ul .dropdown-menu a.menu, .nav .dropdown-menu a.menu, .topbar div > ul .menu-dropdown .dropdown-toggle, .nav .menu-dropdown .dropdown-toggle, .topbar div > ul .dropdown-menu .dropdown-toggle, .nav .dropdown-menu .dropdown-toggle {
|
1084
|
-
color: #fff; }
|
1085
|
-
|
1086
|
-
.topbar div > ul .menu-dropdown a.menu.open, .nav .menu-dropdown a.menu.open, .topbar div > ul .dropdown-menu a.menu.open, .nav .dropdown-menu a.menu.open, .topbar div > ul .menu-dropdown .dropdown-toggle.open, .nav .menu-dropdown .dropdown-toggle.open, .topbar div > ul .dropdown-menu .dropdown-toggle.open, .nav .dropdown-menu .dropdown-toggle.open {
|
1087
|
-
background: #444;
|
1088
|
-
background: rgba(255, 255, 255, 0.05); }
|
1089
|
-
|
1090
|
-
.topbar div > ul .menu-dropdown li a, .nav .menu-dropdown li a, .topbar div > ul .dropdown-menu li a, .nav .dropdown-menu li a {
|
1091
|
-
color: #999;
|
1092
|
-
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); }
|
1093
|
-
|
1094
|
-
.topbar div > ul .menu-dropdown li a:hover, .nav .menu-dropdown li a:hover, .topbar div > ul .dropdown-menu li a:hover, .nav .dropdown-menu li a:hover {
|
1095
|
-
background-color: #191919;
|
1096
|
-
background-repeat: repeat-x;
|
1097
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
|
1098
|
-
background-image: -moz-linear-gradient(top, #292929, #191919);
|
1099
|
-
background-image: -ms-linear-gradient(top, #292929, #191919);
|
1100
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
|
1101
|
-
background-image: -webkit-linear-gradient(top, #292929, #191919);
|
1102
|
-
background-image: -o-linear-gradient(top, #292929, #191919);
|
1103
|
-
background-image: linear-gradient(top, #292929, #191919);
|
1104
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
|
1105
|
-
color: #fff; }
|
1106
|
-
|
1107
|
-
.topbar div > ul .menu-dropdown .divider, .nav .menu-dropdown .divider, .topbar div > ul .dropdown-menu .divider, .nav .dropdown-menu .divider {
|
1108
|
-
background-color: #222;
|
1109
|
-
border-color: #444; }
|
1110
|
-
|
1111
|
-
.topbar ul {
|
1112
|
-
.menu-dropdown li a, .dropdown-menu li a {
|
1113
|
-
padding: 4px 15px; } }
|
1114
|
-
|
1115
|
-
li.menu, .dropdown {
|
1116
|
-
position: relative; }
|
1117
|
-
|
1118
|
-
a.menu:after, .dropdown-toggle:after {
|
1119
|
-
width: 0;
|
1120
|
-
height: 0;
|
1121
|
-
display: inline-block;
|
1122
|
-
content: "↓";
|
1123
|
-
text-indent: -99999px;
|
1124
|
-
vertical-align: top;
|
1125
|
-
margin-top: 8px;
|
1126
|
-
margin-left: 4px;
|
1127
|
-
border-left: 4px solid transparent;
|
1128
|
-
border-right: 4px solid transparent;
|
1129
|
-
border-top: 4px solid #fff;
|
1130
|
-
filter: alpha(opacity = 50);
|
1131
|
-
-khtml-opacity: 0.5;
|
1132
|
-
-moz-opacity: 0.5;
|
1133
|
-
opacity: 0.5; }
|
1134
|
-
|
1135
|
-
.menu-dropdown, .dropdown-menu {
|
1136
|
-
background-color: #fff;
|
1137
|
-
float: left;
|
1138
|
-
display: none;
|
1139
|
-
position: absolute;
|
1140
|
-
top: 40px;
|
1141
|
-
min-width: 160px;
|
1142
|
-
max-width: 220px;
|
1143
|
-
_width: 160px;
|
1144
|
-
margin-left: 0;
|
1145
|
-
margin-right: 0;
|
1146
|
-
padding: 6px 0;
|
1147
|
-
zoom: 1;
|
1148
|
-
border-color: #999;
|
1149
|
-
border-color: rgba(0, 0, 0, 0.2);
|
1150
|
-
border-style: solid;
|
1151
|
-
border-width: 0 1px 1px;
|
1152
|
-
-webkit-border-radius: 0 0 6px 6px;
|
1153
|
-
-moz-border-radius: 0 0 6px 6px;
|
1154
|
-
border-radius: 0 0 6px 6px;
|
1155
|
-
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1156
|
-
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1157
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1158
|
-
-webkit-background-clip: padding-box;
|
1159
|
-
-moz-background-clip: padding-box;
|
1160
|
-
background-clip: padding-box; }
|
1161
|
-
|
1162
|
-
.menu-dropdown li, .dropdown-menu li {
|
1163
|
-
float: none;
|
1164
|
-
display: block;
|
1165
|
-
background-color: none; }
|
1166
|
-
|
1167
|
-
.menu-dropdown .divider, .dropdown-menu .divider {
|
1168
|
-
height: 1px;
|
1169
|
-
margin: 5px 0;
|
1170
|
-
overflow: hidden;
|
1171
|
-
background-color: #eee;
|
1172
|
-
border-bottom: 1px solid #fff; }
|
1173
|
-
|
1174
|
-
.topbar .dropdown-menu a, .dropdown-menu a {
|
1175
|
-
display: block;
|
1176
|
-
padding: 4px 15px;
|
1177
|
-
clear: both;
|
1178
|
-
font-weight: normal;
|
1179
|
-
line-height: 18px;
|
1180
|
-
color: #808080;
|
1181
|
-
text-shadow: 0 1px 0 #fff; }
|
1182
|
-
|
1183
|
-
.topbar .dropdown-menu a:hover, .dropdown-menu a:hover {
|
1184
|
-
background-color: #dddddd;
|
1185
|
-
background-repeat: repeat-x;
|
1186
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
|
1187
|
-
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
1188
|
-
background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
|
1189
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
|
1190
|
-
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
1191
|
-
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
1192
|
-
background-image: linear-gradient(top, #eeeeee, #dddddd);
|
1193
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
|
1194
|
-
color: #404040;
|
1195
|
-
text-decoration: none;
|
1196
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
1197
|
-
-moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
1198
|
-
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025); }
|
1199
|
-
|
1200
|
-
.open .menu, .dropdown.open .menu, .open .dropdown-toggle, .dropdown.open .dropdown-toggle {
|
1201
|
-
color: #fff;
|
1202
|
-
background: #ccc;
|
1203
|
-
background: rgba(0, 0, 0, 0.3); }
|
1204
|
-
|
1205
|
-
.open .menu-dropdown, .dropdown.open .menu-dropdown, .open .dropdown-menu, .dropdown.open .dropdown-menu {
|
1206
|
-
display: block; }
|
1207
|
-
|
1208
|
-
.tabs, .pills {
|
1209
|
-
margin: 0 0 20px;
|
1210
|
-
padding: 0;
|
1211
|
-
list-style: none;
|
1212
|
-
zoom: 1; }
|
1213
|
-
|
1214
|
-
.tabs:before, .pills:before, .tabs:after, .pills:after {
|
1215
|
-
display: table;
|
1216
|
-
content: ""; }
|
1217
|
-
|
1218
|
-
.tabs:after, .pills:after {
|
1219
|
-
clear: both; }
|
1220
|
-
|
1221
|
-
.tabs > li, .pills > li {
|
1222
|
-
float: left; }
|
1223
|
-
|
1224
|
-
.tabs > li > a, .pills > li > a {
|
1225
|
-
display: block; }
|
1226
|
-
|
1227
|
-
.tabs {
|
1228
|
-
width: 100%;
|
1229
|
-
border-bottom: 1px solid #ddd;
|
1230
|
-
> li {
|
1231
|
-
position: relative;
|
1232
|
-
top: 1px;
|
1233
|
-
> a {
|
1234
|
-
margin-right: 2px;
|
1235
|
-
padding: 0 15px;
|
1236
|
-
line-height: 35px;
|
1237
|
-
-webkit-border-radius: 4px 4px 0 0;
|
1238
|
-
-moz-border-radius: 4px 4px 0 0;
|
1239
|
-
border-radius: 4px 4px 0 0;
|
1240
|
-
&:hover {
|
1241
|
-
background-color: #eee;
|
1242
|
-
border-bottom: 1px solid #ddd;
|
1243
|
-
text-decoration: none; } }
|
1244
|
-
&.active > a {
|
1245
|
-
background-color: #fff;
|
1246
|
-
padding: 0 14px;
|
1247
|
-
border: 1px solid #ddd;
|
1248
|
-
border-bottom: 0;
|
1249
|
-
color: #808080; } }
|
1250
|
-
.menu-dropdown, .dropdown-menu {
|
1251
|
-
top: 35px;
|
1252
|
-
border-width: 1px;
|
1253
|
-
-webkit-border-radius: 0 6px 6px 6px;
|
1254
|
-
-moz-border-radius: 0 6px 6px 6px;
|
1255
|
-
border-radius: 0 6px 6px 6px; }
|
1256
|
-
a.menu:after, .dropdown-toggle:after {
|
1257
|
-
border-top-color: #999;
|
1258
|
-
margin-top: 15px;
|
1259
|
-
margin-left: 5px; }
|
1260
|
-
li.open a.menu:after, .dropdown.open .dropdown-toggle:after {
|
1261
|
-
border-top-color: #555; } }
|
1262
|
-
|
1263
|
-
.pills {
|
1264
|
-
a {
|
1265
|
-
margin: 5px 3px 5px 0;
|
1266
|
-
padding: 0 15px;
|
1267
|
-
text-shadow: 0 1px 1px #fff;
|
1268
|
-
line-height: 30px;
|
1269
|
-
-webkit-border-radius: 15px;
|
1270
|
-
-moz-border-radius: 15px;
|
1271
|
-
border-radius: 15px;
|
1272
|
-
&:hover {
|
1273
|
-
background: #0050a3;
|
1274
|
-
color: #fff;
|
1275
|
-
text-decoration: none;
|
1276
|
-
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); } }
|
1277
|
-
.active a {
|
1278
|
-
background: #0069d6;
|
1279
|
-
color: #fff;
|
1280
|
-
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); } }
|
1281
|
-
|
1282
|
-
.hero-unit {
|
1283
|
-
background-color: #f5f5f5;
|
1284
|
-
margin-top: 60px;
|
1285
|
-
margin-bottom: 30px;
|
1286
|
-
padding: 60px;
|
1287
|
-
-webkit-border-radius: 6px;
|
1288
|
-
-moz-border-radius: 6px;
|
1289
|
-
border-radius: 6px;
|
1290
|
-
h1 {
|
1291
|
-
margin-bottom: 0;
|
1292
|
-
font-size: 60px;
|
1293
|
-
line-height: 1;
|
1294
|
-
letter-spacing: -1px; }
|
1295
|
-
p {
|
1296
|
-
font-size: 18px;
|
1297
|
-
font-weight: 200;
|
1298
|
-
line-height: 27px; } }
|
1299
|
-
|
1300
|
-
footer {
|
1301
|
-
margin-top: 17px;
|
1302
|
-
padding-top: 17px;
|
1303
|
-
border-top: 1px solid #eee; }
|
1304
|
-
|
1305
|
-
.page-header {
|
1306
|
-
margin-bottom: 17px;
|
1307
|
-
border-bottom: 1px solid #ddd;
|
1308
|
-
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1309
|
-
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1310
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1311
|
-
h1 {
|
1312
|
-
margin-bottom: 8px; } }
|
1313
|
-
|
1314
|
-
.btn {
|
1315
|
-
cursor: pointer;
|
1316
|
-
display: inline-block;
|
1317
|
-
background-color: #e6e6e6;
|
1318
|
-
background-repeat: no-repeat;
|
1319
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), color-stop(25%, white), to(#e6e6e6));
|
1320
|
-
background-image: -webkit-linear-gradient(white, white 25%, #e6e6e6);
|
1321
|
-
background-image: -moz-linear-gradient(top, white, white 25%, #e6e6e6);
|
1322
|
-
background-image: -ms-linear-gradient(white, white 25%, #e6e6e6);
|
1323
|
-
background-image: -o-linear-gradient(white, white 25%, #e6e6e6);
|
1324
|
-
background-image: linear-gradient(white, white 25%, #e6e6e6);
|
1325
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
1326
|
-
padding: 5px 14px 6px;
|
1327
|
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1328
|
-
color: #333;
|
1329
|
-
font-size: 13px;
|
1330
|
-
line-height: normal;
|
1331
|
-
border: 1px solid #ccc;
|
1332
|
-
border-bottom-color: #bbb;
|
1333
|
-
-webkit-border-radius: 4px;
|
1334
|
-
-moz-border-radius: 4px;
|
1335
|
-
border-radius: 4px;
|
1336
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1337
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1338
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1339
|
-
-webkit-transition: 0.1s linear all;
|
1340
|
-
-moz-transition: 0.1s linear all;
|
1341
|
-
transition: 0.1s linear all;
|
1342
|
-
&:hover {
|
1343
|
-
background-position: 0 -15px;
|
1344
|
-
color: #333;
|
1345
|
-
text-decoration: none; }
|
1346
|
-
&.primary {
|
1347
|
-
color: #fff;
|
1348
|
-
background-color: #0064cd;
|
1349
|
-
background-repeat: repeat-x;
|
1350
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
1351
|
-
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
1352
|
-
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
1353
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
1354
|
-
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
1355
|
-
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
1356
|
-
background-image: linear-gradient(top, #049cdb, #0064cd);
|
1357
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
|
1358
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1359
|
-
border-color: #0064cd #0064cd #003f81;
|
1360
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
|
1361
|
-
&:active {
|
1362
|
-
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1363
|
-
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1364
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); }
|
1365
|
-
&.disabled {
|
1366
|
-
cursor: default;
|
1367
|
-
background-image: none;
|
1368
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1369
|
-
filter: alpha(opacity = 65);
|
1370
|
-
-khtml-opacity: 0.65;
|
1371
|
-
-moz-opacity: 0.65;
|
1372
|
-
opacity: 0.65;
|
1373
|
-
-webkit-box-shadow: none;
|
1374
|
-
-moz-box-shadow: none;
|
1375
|
-
box-shadow: none; }
|
1376
|
-
&[disabled] {
|
1377
|
-
cursor: default;
|
1378
|
-
background-image: none;
|
1379
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1380
|
-
filter: alpha(opacity = 65);
|
1381
|
-
-khtml-opacity: 0.65;
|
1382
|
-
-moz-opacity: 0.65;
|
1383
|
-
opacity: 0.65;
|
1384
|
-
-webkit-box-shadow: none;
|
1385
|
-
-moz-box-shadow: none;
|
1386
|
-
box-shadow: none; }
|
1387
|
-
&.large {
|
1388
|
-
font-size: 16px;
|
1389
|
-
line-height: normal;
|
1390
|
-
padding: 9px 14px 9px;
|
1391
|
-
-webkit-border-radius: 6px;
|
1392
|
-
-moz-border-radius: 6px;
|
1393
|
-
border-radius: 6px; }
|
1394
|
-
&.small {
|
1395
|
-
padding: 7px 9px 7px;
|
1396
|
-
font-size: 11px; } }
|
1397
|
-
|
1398
|
-
:root {
|
1399
|
-
.alert-message, .btn {
|
1400
|
-
border-radius: 0 \0; } }
|
1401
|
-
|
1402
|
-
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
1403
|
-
padding: 0;
|
1404
|
-
border: 0; }
|
1405
|
-
|
1406
|
-
.alert-message {
|
1407
|
-
background-color: #eedc94;
|
1408
|
-
background-repeat: repeat-x;
|
1409
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
|
1410
|
-
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
|
1411
|
-
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
|
1412
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
|
1413
|
-
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
|
1414
|
-
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
|
1415
|
-
background-image: linear-gradient(top, #fceec1, #eedc94);
|
1416
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
|
1417
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1418
|
-
border-color: #eedc94 #eedc94 #e4c652;
|
1419
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1420
|
-
margin-bottom: 18px;
|
1421
|
-
padding: 7px 14px;
|
1422
|
-
color: #404040;
|
1423
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1424
|
-
border-width: 1px;
|
1425
|
-
border-style: solid;
|
1426
|
-
-webkit-border-radius: 4px;
|
1427
|
-
-moz-border-radius: 4px;
|
1428
|
-
border-radius: 4px;
|
1429
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1430
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1431
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1432
|
-
h5 {
|
1433
|
-
line-height: 18px; }
|
1434
|
-
p {
|
1435
|
-
margin-bottom: 0; }
|
1436
|
-
div {
|
1437
|
-
margin-top: 5px;
|
1438
|
-
margin-bottom: 2px;
|
1439
|
-
line-height: 28px; }
|
1440
|
-
.btn {
|
1441
|
-
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
1442
|
-
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
1443
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); }
|
1444
|
-
.close {
|
1445
|
-
float: right;
|
1446
|
-
margin-top: -2px;
|
1447
|
-
color: #000000;
|
1448
|
-
font-size: 20px;
|
1449
|
-
font-weight: bold;
|
1450
|
-
text-shadow: 0 1px 0 #ffffff;
|
1451
|
-
filter: alpha(opacity = 20);
|
1452
|
-
-khtml-opacity: 0.2;
|
1453
|
-
-moz-opacity: 0.2;
|
1454
|
-
opacity: 0.2;
|
1455
|
-
&:hover {
|
1456
|
-
color: #000000;
|
1457
|
-
text-decoration: none;
|
1458
|
-
filter: alpha(opacity = 40);
|
1459
|
-
-khtml-opacity: 0.4;
|
1460
|
-
-moz-opacity: 0.4;
|
1461
|
-
opacity: 0.4; } }
|
1462
|
-
&.block-message {
|
1463
|
-
background-image: none;
|
1464
|
-
background-color: #fdf5d9;
|
1465
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1466
|
-
padding: 14px;
|
1467
|
-
border-color: #fceec1;
|
1468
|
-
-webkit-box-shadow: none;
|
1469
|
-
-moz-box-shadow: none;
|
1470
|
-
box-shadow: none;
|
1471
|
-
p {
|
1472
|
-
margin-right: 30px; }
|
1473
|
-
.alert-actions {
|
1474
|
-
margin-top: 5px; }
|
1475
|
-
&.error, &.success, &.info {
|
1476
|
-
color: #404040;
|
1477
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
|
1478
|
-
&.error {
|
1479
|
-
background-color: #fddfde;
|
1480
|
-
border-color: #fbc7c6; }
|
1481
|
-
&.success {
|
1482
|
-
background-color: #d1eed1;
|
1483
|
-
border-color: #bfe7bf; }
|
1484
|
-
&.info {
|
1485
|
-
background-color: #ddf4fb;
|
1486
|
-
border-color: #c6edf9; } } }
|
1487
|
-
|
1488
|
-
.pagination {
|
1489
|
-
height: 36px;
|
1490
|
-
margin: 18px 0;
|
1491
|
-
ul {
|
1492
|
-
float: left;
|
1493
|
-
margin: 0;
|
1494
|
-
border: 1px solid #ddd;
|
1495
|
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
1496
|
-
-webkit-border-radius: 3px;
|
1497
|
-
-moz-border-radius: 3px;
|
1498
|
-
border-radius: 3px;
|
1499
|
-
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
1500
|
-
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
1501
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
|
1502
|
-
li {
|
1503
|
-
display: inline; }
|
1504
|
-
a {
|
1505
|
-
float: left;
|
1506
|
-
padding: 0 14px;
|
1507
|
-
line-height: 34px;
|
1508
|
-
border-right: 1px solid;
|
1509
|
-
border-right-color: #ddd;
|
1510
|
-
border-right-color: rgba(0, 0, 0, 0.15);
|
1511
|
-
*border-right-color: #ddd;
|
1512
|
-
/* IE6-7 */
|
1513
|
-
text-decoration: none;
|
1514
|
-
&:hover {
|
1515
|
-
background-color: #c7eefe; } }
|
1516
|
-
.active a {
|
1517
|
-
background-color: #c7eefe; }
|
1518
|
-
.disabled a {
|
1519
|
-
background-color: transparent;
|
1520
|
-
color: #bfbfbf;
|
1521
|
-
&:hover {
|
1522
|
-
background-color: transparent;
|
1523
|
-
color: #bfbfbf; } }
|
1524
|
-
.next a {
|
1525
|
-
border: 0; } }
|
1526
|
-
|
1527
|
-
.well {
|
1528
|
-
background-color: #f5f5f5;
|
1529
|
-
margin-bottom: 20px;
|
1530
|
-
padding: 19px;
|
1531
|
-
min-height: 20px;
|
1532
|
-
border: 1px solid #eee;
|
1533
|
-
border: 1px solid rgba(0, 0, 0, 0.05);
|
1534
|
-
-webkit-border-radius: 4px;
|
1535
|
-
-moz-border-radius: 4px;
|
1536
|
-
border-radius: 4px;
|
1537
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1538
|
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1539
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
|
1540
|
-
|
1541
|
-
.modal-backdrop {
|
1542
|
-
background-color: rgba(0, 0, 0, 0.5);
|
1543
|
-
position: fixed;
|
1544
|
-
top: 0;
|
1545
|
-
left: 0;
|
1546
|
-
right: 0;
|
1547
|
-
bottom: 0;
|
1548
|
-
z-index: 1000; }
|
1549
|
-
|
1550
|
-
.modal {
|
1551
|
-
position: fixed;
|
1552
|
-
top: 50%;
|
1553
|
-
left: 50%;
|
1554
|
-
z-index: 2000;
|
1555
|
-
width: 560px;
|
1556
|
-
margin: -280px 0 0 -250px;
|
1557
|
-
background-color: #ffffff;
|
1558
|
-
border: 1px solid #999;
|
1559
|
-
border: 1px solid rgba(0, 0, 0, 0.3);
|
1560
|
-
*border: 1px solid #999;
|
1561
|
-
/* IE6-7 */
|
1562
|
-
-webkit-border-radius: 6px;
|
1563
|
-
-moz-border-radius: 6px;
|
1564
|
-
border-radius: 6px;
|
1565
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
1566
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
1567
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
1568
|
-
-webkit-background-clip: padding-box;
|
1569
|
-
-moz-background-clip: padding-box;
|
1570
|
-
background-clip: padding-box; }
|
1571
|
-
|
1572
|
-
.modal-header {
|
1573
|
-
border-bottom: 1px solid #eee;
|
1574
|
-
padding: 5px 20px;
|
1575
|
-
.close {
|
1576
|
-
position: absolute;
|
1577
|
-
right: 10px;
|
1578
|
-
top: 10px;
|
1579
|
-
color: #999;
|
1580
|
-
line-height: 10px;
|
1581
|
-
font-size: 18px; } }
|
1582
|
-
|
1583
|
-
.modal-body {
|
1584
|
-
padding: 20px; }
|
1585
|
-
|
1586
|
-
.modal-footer {
|
1587
|
-
background-color: #f5f5f5;
|
1588
|
-
padding: 14px 20px 15px;
|
1589
|
-
border-top: 1px solid #ddd;
|
1590
|
-
-webkit-border-radius: 0 0 6px 6px;
|
1591
|
-
-moz-border-radius: 0 0 6px 6px;
|
1592
|
-
border-radius: 0 0 6px 6px;
|
1593
|
-
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
1594
|
-
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
1595
|
-
box-shadow: inset 0 1px 0 #ffffff;
|
1596
|
-
zoom: 1;
|
1597
|
-
margin-bottom: 0;
|
1598
|
-
&:before {
|
1599
|
-
display: table;
|
1600
|
-
content: ""; }
|
1601
|
-
&:after {
|
1602
|
-
display: table;
|
1603
|
-
content: "";
|
1604
|
-
clear: both; }
|
1605
|
-
.btn {
|
1606
|
-
float: right;
|
1607
|
-
margin-left: 10px; } }
|
1608
|
-
|
1609
|
-
.twipsy {
|
1610
|
-
display: block;
|
1611
|
-
position: absolute;
|
1612
|
-
visibility: visible;
|
1613
|
-
padding: 5px;
|
1614
|
-
font-size: 11px;
|
1615
|
-
z-index: 1000;
|
1616
|
-
filter: alpha(opacity = 80);
|
1617
|
-
-khtml-opacity: 0.8;
|
1618
|
-
-moz-opacity: 0.8;
|
1619
|
-
opacity: 0.8;
|
1620
|
-
&.above .twipsy-arrow {
|
1621
|
-
bottom: 0;
|
1622
|
-
left: 50%;
|
1623
|
-
margin-left: -5px;
|
1624
|
-
border-left: 5px solid transparent;
|
1625
|
-
border-right: 5px solid transparent;
|
1626
|
-
border-top: 5px solid #000000; }
|
1627
|
-
&.left .twipsy-arrow {
|
1628
|
-
top: 50%;
|
1629
|
-
right: 0;
|
1630
|
-
margin-top: -5px;
|
1631
|
-
border-top: 5px solid transparent;
|
1632
|
-
border-bottom: 5px solid transparent;
|
1633
|
-
border-left: 5px solid #000000; }
|
1634
|
-
&.below .twipsy-arrow {
|
1635
|
-
top: 0;
|
1636
|
-
left: 50%;
|
1637
|
-
margin-left: -5px;
|
1638
|
-
border-left: 5px solid transparent;
|
1639
|
-
border-right: 5px solid transparent;
|
1640
|
-
border-bottom: 5px solid #000000; }
|
1641
|
-
&.right .twipsy-arrow {
|
1642
|
-
top: 50%;
|
1643
|
-
left: 0;
|
1644
|
-
margin-top: -5px;
|
1645
|
-
border-top: 5px solid transparent;
|
1646
|
-
border-bottom: 5px solid transparent;
|
1647
|
-
border-right: 5px solid #000000; } }
|
1648
|
-
|
1649
|
-
.twipsy-inner {
|
1650
|
-
padding: 3px 8px;
|
1651
|
-
background-color: #000;
|
1652
|
-
color: white;
|
1653
|
-
text-align: center;
|
1654
|
-
max-width: 200px;
|
1655
|
-
text-decoration: none;
|
1656
|
-
-webkit-border-radius: 4px;
|
1657
|
-
-moz-border-radius: 4px;
|
1658
|
-
border-radius: 4px; }
|
1659
|
-
|
1660
|
-
.twipsy-arrow {
|
1661
|
-
position: absolute;
|
1662
|
-
width: 0;
|
1663
|
-
height: 0; }
|
1664
|
-
|
1665
|
-
.popover {
|
1666
|
-
position: absolute;
|
1667
|
-
top: 0;
|
1668
|
-
left: 0;
|
1669
|
-
z-index: 1000;
|
1670
|
-
padding: 5px;
|
1671
|
-
display: none;
|
1672
|
-
&.above .arrow {
|
1673
|
-
bottom: 0;
|
1674
|
-
left: 50%;
|
1675
|
-
margin-left: -5px;
|
1676
|
-
border-left: 5px solid transparent;
|
1677
|
-
border-right: 5px solid transparent;
|
1678
|
-
border-top: 5px solid #000000; }
|
1679
|
-
&.right .arrow {
|
1680
|
-
top: 50%;
|
1681
|
-
left: 0;
|
1682
|
-
margin-top: -5px;
|
1683
|
-
border-top: 5px solid transparent;
|
1684
|
-
border-bottom: 5px solid transparent;
|
1685
|
-
border-right: 5px solid #000000; }
|
1686
|
-
&.below .arrow {
|
1687
|
-
top: 0;
|
1688
|
-
left: 50%;
|
1689
|
-
margin-left: -5px;
|
1690
|
-
border-left: 5px solid transparent;
|
1691
|
-
border-right: 5px solid transparent;
|
1692
|
-
border-bottom: 5px solid #000000; }
|
1693
|
-
&.left .arrow {
|
1694
|
-
top: 50%;
|
1695
|
-
right: 0;
|
1696
|
-
margin-top: -5px;
|
1697
|
-
border-top: 5px solid transparent;
|
1698
|
-
border-bottom: 5px solid transparent;
|
1699
|
-
border-left: 5px solid #000000; }
|
1700
|
-
.arrow {
|
1701
|
-
position: absolute;
|
1702
|
-
width: 0;
|
1703
|
-
height: 0; }
|
1704
|
-
.inner {
|
1705
|
-
background: #333;
|
1706
|
-
background: rgba(0, 0, 0, 0.8);
|
1707
|
-
padding: 3px;
|
1708
|
-
overflow: hidden;
|
1709
|
-
width: 280px;
|
1710
|
-
-webkit-border-radius: 6px;
|
1711
|
-
-moz-border-radius: 6px;
|
1712
|
-
border-radius: 6px;
|
1713
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
1714
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
1715
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); }
|
1716
|
-
.title {
|
1717
|
-
background-color: #f5f5f5;
|
1718
|
-
padding: 9px 15px;
|
1719
|
-
line-height: 1;
|
1720
|
-
-webkit-border-radius: 3px 3px 0 0;
|
1721
|
-
-moz-border-radius: 3px 3px 0 0;
|
1722
|
-
border-radius: 3px 3px 0 0;
|
1723
|
-
border-bottom: 1px solid #eee; }
|
1724
|
-
.content {
|
1725
|
-
background-color: #ffffff;
|
1726
|
-
padding: 14px;
|
1727
|
-
-webkit-border-radius: 0 0 3px 3px;
|
1728
|
-
-moz-border-radius: 0 0 3px 3px;
|
1729
|
-
border-radius: 0 0 3px 3px;
|
1730
|
-
-webkit-background-clip: padding-box;
|
1731
|
-
-moz-background-clip: padding-box;
|
1732
|
-
background-clip: padding-box;
|
1733
|
-
p, ul, ol {
|
1734
|
-
margin-bottom: 0; } } }
|