3.0.2 -> 3.0.3
[bootswatch] / cyborg / bootswatch.less
1 // Cyborg 3.0.3
2 // Bootswatch
3 // -----------------------------------------------------
4
5 @import url("//fonts.googleapis.com/css?family=Droid+Sans:400,700");
6
7 // Navbar =====================================================================
8
9 .navbar {
10
11         border-bottom: 1px solid @gray-dark;
12 }
13
14 // Buttons ====================================================================
15
16 // Typography =================================================================
17
18 .text-primary,
19 .text-primary:hover {
20         color: @brand-primary;
21 }
22
23 .text-success,
24 .text-success:hover {
25         color: @brand-success;
26 }
27
28 .text-danger,
29 .text-danger:hover {
30         color: @brand-danger;
31 }
32
33 .text-warning,
34 .text-warning:hover {
35         color: @brand-warning;
36 }
37
38 .text-info,
39 .text-info:hover {
40         color: @brand-info;
41 }
42
43 // Tables =====================================================================
44
45 .table {
46
47         tr.success,
48         tr.warning,
49         tr.danger {
50                 color: #fff;
51         }
52 }
53
54 .table-responsive > .table {
55         background-color: @table-bg;
56 }
57
58 // Forms ======================================================================
59
60 .has-warning {
61         .help-block,
62         .control-label {
63                 color: @brand-warning;
64         }
65
66         .form-control,
67         .form-control:focus {
68                 border-color: @brand-warning;
69         }
70 }
71
72 .has-error {
73         .help-block,
74         .control-label {
75                 color: @brand-danger;
76         }
77
78         .form-control,
79         .form-control:focus {
80                 border-color: @brand-danger;
81         }
82 }
83
84 .has-success {
85         .help-block,
86         .control-label {
87                 color: @brand-success;
88         }
89
90         .form-control,
91         .form-control:focus {
92                 border-color: @brand-success;
93         }
94 }
95
96 legend {
97         color: #fff;
98 }
99
100 .input-group-addon {
101         background-color: @btn-default-bg;
102 }
103
104 // Navs =======================================================================
105
106 .nav {
107
108         .caret,
109         a:hover .caret {
110                 border-top-color: #fff;
111                 border-bottom-color: #fff;
112         }
113 }
114
115 .nav-tabs,
116 .nav-pills,
117 .breadcrumb,
118 .pagination,
119 .pager {
120
121         a {
122                 color: #fff;
123         }
124 }
125
126 // Indicators =================================================================
127
128 .alert {
129
130         .alert-link,
131         a {
132                 color: @alert-warning-text;
133                 text-decoration: underline;
134         }
135 }
136
137 // Progress bars ==============================================================
138
139 // Containers =================================================================
140
141 .jumbotron {
142
143         h1, h2, h3, h4, h5, h6 {
144                 color: #fff;
145         }
146 }