Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * lib/css/legacy/body.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 4 | */ |
| 5 | html { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 6 | margin: 0px; |
| 7 | padding: 0px; |
| 8 | } |
| 9 | |
| 10 | body { |
| 11 | margin: 0px; |
| 12 | padding: 0px; |
| 13 | font-family: Arial, Helvetica, Sans; |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 14 | font-size: 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 15 | color: #000; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 16 | background-color: #e2e2e2; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 17 | } |
| 18 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 19 | pre { margin: 0px; padding: 0px; } |
| 20 | |
| 21 | button { margin: 2px; margin-left: 0px; } |
| 22 | |
| 23 | label { |
| 24 | padding-top: 15px; |
| 25 | color: #404040; |
| 26 | } |
| 27 | |
| 28 | select, input, textarea { |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 29 | border: 1px solid #ccc; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 30 | -moz-border-radius: 4px; |
| 31 | -webkit-border-radius: 4px; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 32 | font-size: inherit; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 33 | padding: 4px; |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 34 | color: #444; |
| 35 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 36 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 37 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | textarea { |
| 41 | font-family: inherit; |
| 42 | height: 120px; |
| 43 | width: 90%; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 44 | font-size: inherit; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 45 | white-space: normal; |
| 46 | } |
| 47 | |
| 48 | table { padding: 0px; border-collapse: 'collapse'} |
| 49 | |
| 50 | td { |
| 51 | padding:0px; |
| 52 | margin: 0px; |
| 53 | vertical-align: top; |
| 54 | } |
| 55 | |
| 56 | p { |
| 57 | margin: 0px 0px 9px 0px; |
| 58 | line-height: 1.5em; |
| 59 | } |
| 60 | |
| 61 | li { |
| 62 | line-height: 1.5em; |
| 63 | } |
| 64 | |
Rushabh Mehta | aa848be | 2012-02-17 12:06:33 +0530 | [diff] [blame] | 65 | hr { |
| 66 | margin: 18px 0; |
| 67 | border: 0; |
| 68 | border-top: 1px solid #e5e5e5; |
| 69 | border-bottom: 1px solid #ffffff; |
| 70 | } |
| 71 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 72 | /* links */ |
| 73 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 74 | a:active { outline:none; } |
| 75 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 76 | a { |
| 77 | color: #0088cc; |
| 78 | text-decoration: none; |
| 79 | } |
| 80 | a:hover { |
| 81 | color: #005580; |
| 82 | text-decoration: underline; |
| 83 | } |
| 84 | |
| 85 | .link_type { |
| 86 | padding:2px; |
| 87 | color: #0088cc; |
| 88 | cursor: pointer; |
| 89 | } |
| 90 | |
| 91 | .link_type:hover { |
| 92 | color: #005580; |
| 93 | text-decoration: underline; |
| 94 | } |
| 95 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 96 | :focus { -moz-outline-style:none; } |
| 97 | |
| 98 | table.simpletable { border-collapse: collapse; margin-bottom: 10px;} |
| 99 | table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; } |
| 100 | |
| 101 | div.fix_ff_cursor { overflow: auto; } |
| 102 | |
| 103 | /* --- Layout --- */ |
| 104 | |
| 105 | div.comment { color: #444; } |
| 106 | |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 107 | .small { |
| 108 | font-size: 11px; |
| 109 | } |
| 110 | |
| 111 | .help { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 112 | margin-bottom: 3px; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 113 | color: #888; |
| 114 | } |
| 115 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 116 | div#body_div { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 117 | display: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 118 | padding-right: 7px; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 119 | width: 900px; |
| 120 | margin: auto; |
| 121 | margin-top: 56px; |
| 122 | } |
| 123 | |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 124 | .content { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 125 | width: 900px; |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | .background-fade-in { |
| 129 | -webkit-transition: background 1s ease-in; /* property duration timing-function delay */ |
| 130 | -moz-transition: background 1s ease-in; |
| 131 | -o-transition: background 1s ease-in; |
| 132 | transition: background 1s ease-in; |
| 133 | } |
| 134 | |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 135 | footer { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 136 | width: 900px; |
| 137 | margin: auto; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 138 | } |
| 139 | header .container { |
| 140 | width: 900px; |
| 141 | margin: auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 142 | } |
| 143 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 144 | @media (max-width: 1200px) { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 145 | div#body_div, header .container, .content, #opened-page-selector, footer { |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 146 | width: 900px; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | @media (min-width: 1200px) { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 151 | div#body_div, header .container, .content, #opened-page-selector, footer { |
| 152 | width: 1100px; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 153 | } |
| 154 | } |
| 155 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 156 | div.no_script { |
| 157 | display: none; |
| 158 | } |
| 159 | |
| 160 | div.loading_div { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 161 | background-color: #FFFFCC; |
| 162 | z-index: 1999; |
| 163 | right: 5px; |
| 164 | width: 90px; |
| 165 | display: none; |
| 166 | text-align: center; |
| 167 | padding: 2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 168 | border: 1px solid #FF4; |
| 169 | } |
| 170 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 171 | div.std-footer { |
Rushabh Mehta | 0f0b1f5 | 2012-04-11 17:26:03 +0530 | [diff] [blame] | 172 | margin: 13px -15px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 173 | border-top: 1px solid #AAA; |
| 174 | padding: 13px; |
| 175 | } |
| 176 | |
| 177 | div.std-footer-item { |
| 178 | margin: 0px 13px 13px 0px; |
| 179 | } |
| 180 | |
| 181 | .shadow { |
| 182 | -moz-box-shadow: 0px 2px 2px #888; |
| 183 | -webkit-box-shadow: 0px 2px 2px #888; |
| 184 | box-shadow: 0px 2px 2px #888; |
| 185 | } |
| 186 | |
| 187 | .round { |
| 188 | -webkit-border-radius: 5px; |
| 189 | -moz-border-radius: 5px; |
| 190 | border-radius: 5px; |
| 191 | } |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 192 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 193 | .layout_wrapper, .layout-wrapper { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 194 | -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
| 195 | -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
| 196 | box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 197 | background-color: #fff; |
| 198 | padding: 15px; |
Rushabh Mehta | f7f7f63 | 2012-04-11 15:18:24 +0530 | [diff] [blame] | 199 | -webkit-border-radius: 5px; |
| 200 | -moz-border-radius: 5px; |
| 201 | border-radius: 5px; |
| 202 | margin-bottom: 30px; |
| 203 | overflow: hidden; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 204 | } |
| 205 | |
Rushabh Mehta | 850c928 | 2012-04-13 19:04:55 +0530 | [diff] [blame] | 206 | .layout-wrapper-appframe { |
| 207 | padding: 0px; |
| 208 | } |
| 209 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 210 | .layout-wrapper-background { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 211 | background-color: #fafafa !important; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 212 | padding: 0px; |
| 213 | } |
| 214 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 215 | .layout-main-section { |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 216 | width: 71%; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 217 | float: left; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 218 | padding: 15px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 219 | background-color: #FFF; |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 220 | min-height: 600px; |
Rushabh Mehta | c2a0818 | 2012-04-12 10:18:45 +0530 | [diff] [blame] | 221 | -moz-box-shadow: 2px 0px 1px #ddd; |
| 222 | -webkit-box-shadow: 2px 0px 1px #ddd; |
| 223 | box-shadow: 2px 0px 1px #ddd; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | .layout-side-section { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 227 | width: 22%; |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 228 | /*float: right;*/ |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 229 | color: #606060; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 230 | overflow-x: hidden; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 231 | padding: 15px; |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 232 | min-height: 600px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | /* from bootstrap */ |
| 236 | .container { |
| 237 | margin-left: auto; |
| 238 | margin-right: auto; |
| 239 | zoom: 1; |
| 240 | } |
| 241 | .container:before, .container:after { |
| 242 | display: table; |
| 243 | content: ""; |
| 244 | zoom: 1; |
| 245 | } |
| 246 | .container:after { |
| 247 | clear: both; |
| 248 | } |
| 249 | |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 250 | .well { |
| 251 | min-height: 20px; |
| 252 | padding: 19px; |
| 253 | margin-bottom: 20px; |
| 254 | background-color: #f5f5f5; |
| 255 | border: 1px solid #eee; |
| 256 | border: 1px solid rgba(0, 0, 0, 0.05); |
| 257 | -webkit-border-radius: 4px; |
| 258 | -moz-border-radius: 4px; |
| 259 | border-radius: 4px; |
| 260 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 261 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 262 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 263 | } |
| 264 | |
Rushabh Mehta | df33cb3 | 2012-03-01 13:44:09 +0530 | [diff] [blame] | 265 | .avatar-small { |
| 266 | display: inline-block; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 267 | width: 24px; |
| 268 | height: 20px; |
| 269 | vertical-align: middle; |
| 270 | overflow: hidden; |
| 271 | margin: 0px 3px; |
Rushabh Mehta | df33cb3 | 2012-03-01 13:44:09 +0530 | [diff] [blame] | 272 | } |
| 273 | .avatar-small img { |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 274 | width: 24px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 275 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 276 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 277 | /* |
| 278 | * lib/css/legacy/messages.css |
| 279 | */ |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 280 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 281 | /* FLOATING MESSAGE */ |
| 282 | |
| 283 | .btn-img { cursor: pointer; } |
| 284 | |
| 285 | div.fetching { color: #888; text-align:right; } |
| 286 | |
| 287 | div.notice { |
| 288 | postion: absolute; |
| 289 | background-color: #000; |
| 290 | -moz-border-radius: 5px; -webkit-border-radius: 5px; |
| 291 | opacity: 0.6; |
| 292 | right: 0; |
| 293 | top: 0; |
| 294 | margin-top: 8px; |
| 295 | z-index: -1; |
| 296 | padding: 8px; |
| 297 | } |
| 298 | |
| 299 | /** help **/ |
| 300 | |
| 301 | .info-box { |
| 302 | background-color: #F8F8F8; |
| 303 | border: 1px solid #CCCCCC; |
| 304 | border-radius: 3px 3px 3px 3px; |
| 305 | line-height: 1.6em; |
| 306 | overflow: auto; |
| 307 | padding: 6px 10px; |
| 308 | margin-bottom: 9px; |
| 309 | } |
| 310 | |
| 311 | .help_box, .help-box { |
| 312 | background-color:#FFC; |
| 313 | font-size: 13px; |
| 314 | color: #864; |
| 315 | padding: 7px; |
| 316 | margin: 11px 0px; |
| 317 | border: 1px solid #EEB; |
| 318 | } |
| 319 | |
| 320 | .help_box_big { |
| 321 | background-color:#FFC; |
| 322 | color: #864; |
| 323 | padding: 7px; |
| 324 | margin: 7px 0px; |
| 325 | border: 1px solid #EEB; |
| 326 | text-align: center; |
| 327 | font-size: 14px; |
| 328 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 329 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 330 | /* |
| 331 | * lib/css/legacy/dialog.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 332 | */ |
| 333 | /***** Dialogs *******/ |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 334 | |
| 335 | div.dialog_wrapper { |
| 336 | position: absolute; |
| 337 | width: 440px; |
| 338 | display: none; |
| 339 | z-index: 90; |
| 340 | background-color: #FFF; |
Rushabh Mehta | 4908649 | 2012-04-11 18:02:23 +0530 | [diff] [blame] | 341 | box-shadow:1px 1px 8px #444; |
| 342 | -moz-box-shadow: 1px 1px 8px #444; |
| 343 | -webkit-box-shadow: 1px 1px 8px #444; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 344 | |
| 345 | border-radius: 5px; |
| 346 | -moz-border-radius: 5px; |
Rushabh Mehta | 4908649 | 2012-04-11 18:02:23 +0530 | [diff] [blame] | 347 | -webkit-border-radius: 5px; |
| 348 | |
| 349 | overflow: hidden; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | div.dialog_head { |
| 353 | height: 22px; |
| 354 | padding: 4px; |
| 355 | background-color: #222; |
| 356 | color: #FFF; |
| 357 | } |
| 358 | |
| 359 | div.dialog_body { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 360 | padding: 8px 8px 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 361 | border-radius: 5px; |
| 362 | -moz-border-radius: 5px; |
| 363 | -webkit-border-radius: 5px; |
| 364 | } |
| 365 | |
| 366 | div.dialog_back { |
| 367 | position: fixed; |
| 368 | display: none; |
| 369 | top: 0px; |
| 370 | left: 0px; |
| 371 | bottom: 0px; |
| 372 | right: 0px; |
Rushabh Mehta | 4908649 | 2012-04-11 18:02:23 +0530 | [diff] [blame] | 373 | background-color: #aaa; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 374 | opacity: 0.6; |
| 375 | z-index: 50; |
| 376 | text-align: center; |
| 377 | } |
| 378 | |
| 379 | div.dialog_message { |
| 380 | display: none; |
| 381 | position: absolute; |
| 382 | width: 250px; |
| 383 | font-size: 12px; |
| 384 | z-index: 91; |
| 385 | background-color:#FFF; |
| 386 | padding: 12px; |
| 387 | border: 1px solid #444; |
| 388 | } |
| 389 | |
| 390 | div.dialog_row { |
| 391 | padding: 8px 8px 0px 8px; |
| 392 | } |
| 393 | |
| 394 | div.dialog_row table { |
| 395 | width: 100%; |
| 396 | } |
| 397 | |
| 398 | div.dialog_row table td { |
| 399 | } |
| 400 | |
| 401 | div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select { |
| 402 | width: 80%; |
| 403 | font-size: 14px; |
| 404 | } |
| 405 | |
| 406 | div.dialog_row table td textarea { |
| 407 | width: 80%; |
| 408 | height: 200px; |
| 409 | font-size: 12px; |
| 410 | } |
| 411 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 412 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 413 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 414 | * lib/css/bootstrap/headings.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 415 | */ |
| 416 | /* heading from bootstrap */ |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 417 | |
| 418 | h1, |
| 419 | h2, |
| 420 | h3, |
| 421 | h4, |
| 422 | h5, |
| 423 | h6 { |
| 424 | margin: 0; |
| 425 | font-weight: bold; |
| 426 | color: #333333; |
| 427 | text-rendering: optimizelegibility; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 428 | } |
| 429 | h1 small, |
| 430 | h2 small, |
| 431 | h3 small, |
| 432 | h4 small, |
| 433 | h5 small, |
| 434 | h6 small { |
| 435 | font-weight: normal; |
| 436 | color: #999999; |
| 437 | } |
| 438 | h1 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 439 | font-size: 280%; |
| 440 | line-height: 120%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 441 | } |
| 442 | h1 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 443 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 444 | } |
| 445 | h2 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 446 | font-size: 200%; |
| 447 | line-height: 120%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 448 | } |
| 449 | h2 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 450 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 451 | } |
| 452 | h3 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 453 | font-size: 210%; |
| 454 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 455 | } |
| 456 | h3 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 457 | font-size: 130%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 458 | } |
| 459 | h4, h5, h6 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 460 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 461 | } |
| 462 | h4 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 463 | font-size: 113%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 464 | } |
| 465 | h4 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 466 | font-size: 100%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 467 | } |
| 468 | h5 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 469 | font-size: 100%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 470 | } |
| 471 | h6 { |
| 472 | font-size: 11px; |
| 473 | color: #999999; |
| 474 | text-transform: uppercase; |
| 475 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 476 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 477 | /* |
| 478 | * lib/css/bootstrap/buttons.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 479 | */ |
| 480 | .close { |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 481 | font-family: Helvetica, Sans; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 482 | float: right; |
| 483 | font-size: 20px; |
| 484 | font-weight: bold; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 485 | line-height: 18px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 486 | color: #000000; |
| 487 | text-shadow: 0 1px 0 #ffffff; |
| 488 | opacity: 0.2; |
| 489 | filter: alpha(opacity=20); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 490 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 491 | .close:hover { |
| 492 | color: #000000; |
| 493 | text-decoration: none; |
| 494 | opacity: 0.4; |
| 495 | filter: alpha(opacity=40); |
| 496 | cursor: pointer; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 497 | } |
| 498 | .btn { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 499 | display: inline-block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 500 | padding: 4px 10px 4px; |
| 501 | font-size: 13px; |
| 502 | line-height: 18px; |
| 503 | color: #333333; |
| 504 | text-align: center; |
| 505 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); |
| 506 | background-color: #fafafa; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 507 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); |
| 508 | background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 509 | background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); |
| 510 | background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 511 | background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 512 | background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 513 | background-repeat: no-repeat; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 514 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 515 | border: 1px solid #ccc; |
| 516 | border-bottom-color: #bbb; |
| 517 | -webkit-border-radius: 4px; |
| 518 | -moz-border-radius: 4px; |
| 519 | border-radius: 4px; |
| 520 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 521 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 522 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 523 | cursor: pointer; |
| 524 | *margin-left: .3em; |
| 525 | } |
| 526 | .btn:first-child { |
| 527 | *margin-left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 528 | } |
| 529 | .btn:hover { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 530 | color: #333333; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 531 | text-decoration: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 532 | background-color: #e6e6e6; |
| 533 | background-position: 0 -15px; |
| 534 | -webkit-transition: background-position 0.1s linear; |
| 535 | -moz-transition: background-position 0.1s linear; |
| 536 | -ms-transition: background-position 0.1s linear; |
| 537 | -o-transition: background-position 0.1s linear; |
| 538 | transition: background-position 0.1s linear; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 539 | } |
| 540 | .btn:focus { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 541 | outline: thin dotted; |
| 542 | outline: 5px auto -webkit-focus-ring-color; |
| 543 | outline-offset: -2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 544 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 545 | .btn.active, .btn:active { |
| 546 | background-image: none; |
| 547 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 548 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 549 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 550 | background-color: #e6e6e6; |
| 551 | background-color: #d9d9d9 \9; |
| 552 | color: rgba(0, 0, 0, 0.5); |
| 553 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 554 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 555 | .btn.disabled, .btn[disabled] { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 556 | cursor: default; |
| 557 | background-image: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 558 | background-color: #e6e6e6; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 559 | opacity: 0.65; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 560 | filter: alpha(opacity=65); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 561 | -webkit-box-shadow: none; |
| 562 | -moz-box-shadow: none; |
| 563 | box-shadow: none; |
| 564 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 565 | .btn-large { |
| 566 | padding: 9px 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 567 | font-size: 15px; |
| 568 | line-height: normal; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 569 | -webkit-border-radius: 5px; |
| 570 | -moz-border-radius: 5px; |
| 571 | border-radius: 5px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 572 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 573 | .btn-large .icon { |
| 574 | margin-top: 1px; |
| 575 | } |
| 576 | .btn-small { |
| 577 | padding: 5px 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 578 | font-size: 11px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 579 | line-height: 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 580 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 581 | .btn-small .icon { |
| 582 | margin-top: -1px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 583 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 584 | .btn-primary, |
| 585 | .btn-primary:hover, |
| 586 | .btn-warning, |
| 587 | .btn-warning:hover, |
| 588 | .btn-danger, |
| 589 | .btn-danger:hover, |
| 590 | .btn-success, |
| 591 | .btn-success:hover, |
| 592 | .btn-info, |
| 593 | .btn-info:hover { |
| 594 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 595 | color: #ffffff; |
| 596 | } |
| 597 | .btn-primary.active, |
| 598 | .btn-warning.active, |
| 599 | .btn-danger.active, |
| 600 | .btn-success.active, |
| 601 | .btn-info.active { |
| 602 | color: rgba(255, 255, 255, 0.75); |
| 603 | } |
| 604 | .btn-primary { |
| 605 | background-color: #006dcc; |
| 606 | background-image: -moz-linear-gradient(top, #0088cc, #0044cc); |
| 607 | background-image: -ms-linear-gradient(top, #0088cc, #0044cc); |
| 608 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); |
| 609 | background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); |
| 610 | background-image: -o-linear-gradient(top, #0088cc, #0044cc); |
| 611 | background-image: linear-gradient(top, #0088cc, #0044cc); |
| 612 | background-repeat: repeat-x; |
| 613 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0); |
| 614 | border-color: #0044cc #0044cc #002a80; |
| 615 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 616 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 617 | } |
| 618 | .btn-primary:hover, |
| 619 | .btn-primary:active, |
| 620 | .btn-primary.active, |
| 621 | .btn-primary.disabled, |
| 622 | .btn-primary[disabled] { |
| 623 | background-color: #0044cc; |
| 624 | } |
| 625 | .btn-primary:active, .btn-primary.active { |
| 626 | background-color: #003399 \9; |
| 627 | } |
| 628 | .btn-warning { |
| 629 | background-color: #faa732; |
| 630 | background-image: -moz-linear-gradient(top, #fbb450, #f89406); |
| 631 | background-image: -ms-linear-gradient(top, #fbb450, #f89406); |
| 632 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); |
| 633 | background-image: -webkit-linear-gradient(top, #fbb450, #f89406); |
| 634 | background-image: -o-linear-gradient(top, #fbb450, #f89406); |
| 635 | background-image: linear-gradient(top, #fbb450, #f89406); |
| 636 | background-repeat: repeat-x; |
| 637 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); |
| 638 | border-color: #f89406 #f89406 #ad6704; |
| 639 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 640 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 641 | } |
| 642 | .btn-warning:hover, |
| 643 | .btn-warning:active, |
| 644 | .btn-warning.active, |
| 645 | .btn-warning.disabled, |
| 646 | .btn-warning[disabled] { |
| 647 | background-color: #f89406; |
| 648 | } |
| 649 | .btn-warning:active, .btn-warning.active { |
| 650 | background-color: #c67605 \9; |
| 651 | } |
| 652 | .btn-danger { |
| 653 | background-color: #da4f49; |
| 654 | background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); |
| 655 | background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); |
| 656 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); |
| 657 | background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); |
| 658 | background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); |
| 659 | background-image: linear-gradient(top, #ee5f5b, #bd362f); |
| 660 | background-repeat: repeat-x; |
| 661 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); |
| 662 | border-color: #bd362f #bd362f #802420; |
| 663 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 664 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 665 | } |
| 666 | .btn-danger:hover, |
| 667 | .btn-danger:active, |
| 668 | .btn-danger.active, |
| 669 | .btn-danger.disabled, |
| 670 | .btn-danger[disabled] { |
| 671 | background-color: #bd362f; |
| 672 | } |
| 673 | .btn-danger:active, .btn-danger.active { |
| 674 | background-color: #942a25 \9; |
| 675 | } |
| 676 | .btn-success { |
| 677 | background-color: #5bb75b; |
| 678 | background-image: -moz-linear-gradient(top, #62c462, #51a351); |
| 679 | background-image: -ms-linear-gradient(top, #62c462, #51a351); |
| 680 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); |
| 681 | background-image: -webkit-linear-gradient(top, #62c462, #51a351); |
| 682 | background-image: -o-linear-gradient(top, #62c462, #51a351); |
| 683 | background-image: linear-gradient(top, #62c462, #51a351); |
| 684 | background-repeat: repeat-x; |
| 685 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); |
| 686 | border-color: #51a351 #51a351 #387038; |
| 687 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 688 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 689 | } |
| 690 | .btn-success:hover, |
| 691 | .btn-success:active, |
| 692 | .btn-success.active, |
| 693 | .btn-success.disabled, |
| 694 | .btn-success[disabled] { |
| 695 | background-color: #51a351; |
| 696 | } |
| 697 | .btn-success:active, .btn-success.active { |
| 698 | background-color: #408140 \9; |
| 699 | } |
| 700 | .btn-info { |
| 701 | background-color: #49afcd; |
| 702 | background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); |
| 703 | background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); |
| 704 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); |
| 705 | background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); |
| 706 | background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); |
| 707 | background-image: linear-gradient(top, #5bc0de, #2f96b4); |
| 708 | background-repeat: repeat-x; |
| 709 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); |
| 710 | border-color: #2f96b4 #2f96b4 #1f6377; |
| 711 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 712 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 713 | } |
| 714 | .btn-info:hover, |
| 715 | .btn-info:active, |
| 716 | .btn-info.active, |
| 717 | .btn-info.disabled, |
| 718 | .btn-info[disabled] { |
| 719 | background-color: #2f96b4; |
| 720 | } |
| 721 | .btn-info:active, .btn-info.active { |
| 722 | background-color: #24748c \9; |
| 723 | } |
| 724 | button.btn, input[type="submit"].btn { |
| 725 | *padding-top: 2px; |
| 726 | *padding-bottom: 2px; |
| 727 | } |
| 728 | button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 729 | padding: 0; |
| 730 | border: 0; |
| 731 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 732 | button.btn.large, input[type="submit"].btn.large { |
| 733 | *padding-top: 7px; |
| 734 | *padding-bottom: 7px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 735 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 736 | button.btn.small, input[type="submit"].btn.small { |
| 737 | *padding-top: 3px; |
| 738 | *padding-bottom: 3px; |
| 739 | } |
| 740 | .btn-group { |
| 741 | position: relative; |
| 742 | *zoom: 1; |
| 743 | *margin-left: .3em; |
| 744 | } |
| 745 | .btn-group:before, .btn-group:after { |
| 746 | display: table; |
| 747 | content: ""; |
| 748 | } |
| 749 | .btn-group:after { |
| 750 | clear: both; |
| 751 | } |
| 752 | .btn-group:first-child { |
| 753 | *margin-left: 0; |
| 754 | } |
| 755 | .btn-group + .btn-group { |
| 756 | margin-left: 5px; |
| 757 | } |
| 758 | .btn-toolbar { |
| 759 | margin-top: 9px; |
| 760 | margin-bottom: 9px; |
| 761 | } |
| 762 | .btn-toolbar .btn-group { |
| 763 | display: inline-block; |
| 764 | *display: inline; |
| 765 | /* IE7 inline-block hack */ |
| 766 | |
| 767 | *zoom: 1; |
| 768 | } |
| 769 | .btn-group .btn { |
| 770 | position: relative; |
| 771 | float: left; |
| 772 | margin-left: -1px; |
| 773 | -webkit-border-radius: 0; |
| 774 | -moz-border-radius: 0; |
| 775 | border-radius: 0; |
| 776 | } |
| 777 | .btn-group .btn:first-child { |
| 778 | margin-left: 0; |
| 779 | -webkit-border-top-left-radius: 4px; |
| 780 | -moz-border-radius-topleft: 4px; |
| 781 | border-top-left-radius: 4px; |
| 782 | -webkit-border-bottom-left-radius: 4px; |
| 783 | -moz-border-radius-bottomleft: 4px; |
| 784 | border-bottom-left-radius: 4px; |
| 785 | } |
| 786 | .btn-group .btn:last-child, .btn-group .dropdown-toggle { |
| 787 | -webkit-border-top-right-radius: 4px; |
| 788 | -moz-border-radius-topright: 4px; |
| 789 | border-top-right-radius: 4px; |
| 790 | -webkit-border-bottom-right-radius: 4px; |
| 791 | -moz-border-radius-bottomright: 4px; |
| 792 | border-bottom-right-radius: 4px; |
| 793 | } |
| 794 | .btn-group .btn.large:first-child { |
| 795 | margin-left: 0; |
| 796 | -webkit-border-top-left-radius: 6px; |
| 797 | -moz-border-radius-topleft: 6px; |
| 798 | border-top-left-radius: 6px; |
| 799 | -webkit-border-bottom-left-radius: 6px; |
| 800 | -moz-border-radius-bottomleft: 6px; |
| 801 | border-bottom-left-radius: 6px; |
| 802 | } |
| 803 | .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle { |
| 804 | -webkit-border-top-right-radius: 6px; |
| 805 | -moz-border-radius-topright: 6px; |
| 806 | border-top-right-radius: 6px; |
| 807 | -webkit-border-bottom-right-radius: 6px; |
| 808 | -moz-border-radius-bottomright: 6px; |
| 809 | border-bottom-right-radius: 6px; |
| 810 | } |
| 811 | .btn-group .btn:hover, |
| 812 | .btn-group .btn:focus, |
| 813 | .btn-group .btn:active, |
| 814 | .btn-group .btn.active { |
| 815 | z-index: 2; |
| 816 | } |
| 817 | .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { |
| 818 | outline: 0; |
| 819 | } |
| 820 | .btn-group .dropdown-toggle { |
| 821 | padding-left: 8px; |
| 822 | padding-right: 8px; |
| 823 | -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 824 | -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 825 | box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 826 | *padding-top: 5px; |
| 827 | *padding-bottom: 5px; |
| 828 | } |
| 829 | .btn-group.open { |
| 830 | *z-index: 1000; |
| 831 | } |
| 832 | .btn-group.open .dropdown-menu { |
| 833 | display: block; |
| 834 | margin-top: 1px; |
| 835 | -webkit-border-radius: 5px; |
| 836 | -moz-border-radius: 5px; |
| 837 | border-radius: 5px; |
| 838 | } |
| 839 | .btn-group.open .dropdown-toggle { |
| 840 | background-image: none; |
| 841 | -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 842 | -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 843 | box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 844 | } |
| 845 | .btn .caret { |
| 846 | margin-top: 7px; |
| 847 | margin-left: 0; |
| 848 | } |
| 849 | .btn:hover .caret, .open.btn-group .caret { |
| 850 | opacity: 1; |
| 851 | filter: alpha(opacity=100); |
| 852 | } |
| 853 | .btn-primary .caret, |
| 854 | .btn-danger .caret, |
| 855 | .btn-info .caret, |
| 856 | .btn-success .caret { |
| 857 | border-top-color: #ffffff; |
| 858 | opacity: 0.75; |
| 859 | filter: alpha(opacity=75); |
| 860 | } |
| 861 | .btn-small .caret { |
| 862 | margin-top: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 863 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 864 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 865 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 866 | * lib/css/bootstrap/navbar.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 867 | */ |
| 868 | .nav { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 869 | margin-left: 0; |
| 870 | margin-bottom: 18px; |
| 871 | list-style: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 872 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 873 | .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 874 | display: block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 875 | } |
| 876 | .nav > li > a:hover { |
| 877 | text-decoration: none; |
| 878 | background-color: #eeeeee; |
| 879 | } |
| 880 | .nav-list { |
| 881 | padding-left: 14px; |
| 882 | padding-right: 14px; |
| 883 | margin-bottom: 0; |
| 884 | } |
| 885 | .nav-list > li > a, .nav-list .nav-header { |
| 886 | display: block; |
| 887 | padding: 3px 15px; |
| 888 | margin-left: -15px; |
| 889 | margin-right: -15px; |
| 890 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 891 | } |
| 892 | .nav-list .nav-header { |
| 893 | font-size: 11px; |
| 894 | font-weight: bold; |
| 895 | line-height: 18px; |
| 896 | color: #999999; |
| 897 | text-transform: uppercase; |
| 898 | } |
| 899 | .nav-list > li + .nav-header { |
| 900 | margin-top: 9px; |
| 901 | } |
| 902 | .nav-list .active > a, .nav-list .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 903 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 904 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); |
| 905 | background-color: #0088cc; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 906 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 907 | .nav-list [class^="icon-"] { |
| 908 | margin-right: 2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 909 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 910 | .nav-tabs, .nav-pills { |
| 911 | *zoom: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 912 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 913 | .nav-tabs:before, |
| 914 | .nav-pills:before, |
| 915 | .nav-tabs:after, |
| 916 | .nav-pills:after { |
| 917 | display: table; |
| 918 | content: ""; |
| 919 | } |
| 920 | .nav-tabs:after, .nav-pills:after { |
| 921 | clear: both; |
| 922 | } |
| 923 | .nav-tabs > li, .nav-pills > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 924 | float: left; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 925 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 926 | .nav-tabs > li > a, .nav-pills > li > a { |
| 927 | padding-right: 12px; |
| 928 | padding-left: 12px; |
| 929 | margin-right: 2px; |
| 930 | line-height: 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 931 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 932 | .nav-tabs { |
| 933 | border-bottom: 1px solid #ddd; |
| 934 | } |
| 935 | .nav-tabs > li { |
| 936 | margin-bottom: -1px; |
| 937 | } |
| 938 | .nav-tabs > li > a { |
| 939 | padding-top: 9px; |
| 940 | padding-bottom: 9px; |
| 941 | border: 1px solid transparent; |
| 942 | -webkit-border-radius: 4px 4px 0 0; |
| 943 | -moz-border-radius: 4px 4px 0 0; |
| 944 | border-radius: 4px 4px 0 0; |
| 945 | } |
| 946 | .nav-tabs > li > a:hover { |
| 947 | border-color: #eeeeee #eeeeee #dddddd; |
| 948 | } |
| 949 | .nav-tabs > .active > a, .nav-tabs > .active > a:hover { |
| 950 | color: #555555; |
| 951 | background-color: #ffffff; |
| 952 | border: 1px solid #ddd; |
| 953 | border-bottom-color: transparent; |
| 954 | cursor: default; |
| 955 | } |
| 956 | .nav-pills > li > a { |
| 957 | padding-top: 8px; |
| 958 | padding-bottom: 8px; |
| 959 | margin-top: 2px; |
| 960 | margin-bottom: 2px; |
| 961 | -webkit-border-radius: 5px; |
| 962 | -moz-border-radius: 5px; |
| 963 | border-radius: 5px; |
| 964 | } |
| 965 | .nav-pills .active > a, .nav-pills .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 966 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 967 | background-color: #0088cc; |
| 968 | } |
| 969 | .nav-stacked > li { |
| 970 | float: none; |
| 971 | } |
| 972 | .nav-stacked > li > a { |
| 973 | margin-right: 0; |
| 974 | } |
| 975 | .nav-tabs.nav-stacked { |
| 976 | border-bottom: 0; |
| 977 | } |
| 978 | .nav-tabs.nav-stacked > li > a { |
| 979 | border: 1px solid #ddd; |
| 980 | -webkit-border-radius: 0; |
| 981 | -moz-border-radius: 0; |
| 982 | border-radius: 0; |
| 983 | } |
| 984 | .nav-tabs.nav-stacked > li:first-child > a { |
| 985 | -webkit-border-radius: 4px 4px 0 0; |
| 986 | -moz-border-radius: 4px 4px 0 0; |
| 987 | border-radius: 4px 4px 0 0; |
| 988 | } |
| 989 | .nav-tabs.nav-stacked > li:last-child > a { |
| 990 | -webkit-border-radius: 0 0 4px 4px; |
| 991 | -moz-border-radius: 0 0 4px 4px; |
| 992 | border-radius: 0 0 4px 4px; |
| 993 | } |
| 994 | .nav-tabs.nav-stacked > li > a:hover { |
| 995 | border-color: #ddd; |
| 996 | z-index: 2; |
| 997 | } |
| 998 | .nav-pills.nav-stacked > li > a { |
| 999 | margin-bottom: 3px; |
| 1000 | } |
| 1001 | .nav-pills.nav-stacked > li:last-child > a { |
| 1002 | margin-bottom: 1px; |
| 1003 | } |
| 1004 | .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu { |
| 1005 | margin-top: 1px; |
| 1006 | border-width: 1px; |
| 1007 | } |
| 1008 | .nav-pills .dropdown-menu { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1009 | -webkit-border-radius: 4px; |
| 1010 | -moz-border-radius: 4px; |
| 1011 | border-radius: 4px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1012 | } |
| 1013 | .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret { |
| 1014 | border-top-color: #0088cc; |
| 1015 | margin-top: 6px; |
| 1016 | } |
| 1017 | .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret { |
| 1018 | border-top-color: #005580; |
| 1019 | } |
| 1020 | .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret { |
| 1021 | border-top-color: #333333; |
| 1022 | } |
| 1023 | .nav > .dropdown.active > a:hover { |
| 1024 | color: #000000; |
| 1025 | cursor: pointer; |
| 1026 | } |
| 1027 | .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover { |
| 1028 | color: #ffffff; |
| 1029 | background-color: #999999; |
| 1030 | border-color: #999999; |
| 1031 | } |
| 1032 | .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret { |
| 1033 | border-top-color: #ffffff; |
| 1034 | opacity: 1; |
| 1035 | filter: alpha(opacity=100); |
| 1036 | } |
| 1037 | |
| 1038 | .navbar { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1039 | overflow: visible; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1040 | margin-bottom: 18px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1041 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1042 | .navbar-inner { |
| 1043 | padding-left: 20px; |
| 1044 | padding-right: 20px; |
| 1045 | background-color: #2c2c2c; |
| 1046 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 1047 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 1048 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 1049 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 1050 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 1051 | background-image: linear-gradient(top, #333333, #222222); |
| 1052 | background-repeat: repeat-x; |
| 1053 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 1054 | -webkit-border-radius: 4px; |
| 1055 | -moz-border-radius: 4px; |
| 1056 | border-radius: 4px; |
| 1057 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1058 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1059 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1060 | } |
| 1061 | .btn-navbar { |
| 1062 | display: none; |
| 1063 | float: right; |
| 1064 | padding: 7px 10px; |
| 1065 | margin-left: 5px; |
| 1066 | margin-right: 5px; |
| 1067 | background-color: #2c2c2c; |
| 1068 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 1069 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 1070 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 1071 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 1072 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 1073 | background-image: linear-gradient(top, #333333, #222222); |
| 1074 | background-repeat: repeat-x; |
| 1075 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 1076 | border-color: #222222 #222222 #000000; |
| 1077 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1078 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 1079 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1080 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1081 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1082 | } |
| 1083 | .btn-navbar:hover, |
| 1084 | .btn-navbar:active, |
| 1085 | .btn-navbar.active, |
| 1086 | .btn-navbar.disabled, |
| 1087 | .btn-navbar[disabled] { |
| 1088 | background-color: #222222; |
| 1089 | } |
| 1090 | .btn-navbar:active, .btn-navbar.active { |
| 1091 | background-color: #080808 \9; |
| 1092 | } |
| 1093 | .btn-navbar .icon-bar { |
| 1094 | display: block; |
| 1095 | width: 18px; |
| 1096 | height: 2px; |
| 1097 | background-color: #f5f5f5; |
| 1098 | -webkit-border-radius: 1px; |
| 1099 | -moz-border-radius: 1px; |
| 1100 | border-radius: 1px; |
| 1101 | -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1102 | -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1103 | box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1104 | } |
| 1105 | .btn-navbar .icon-bar + .icon-bar { |
| 1106 | margin-top: 3px; |
| 1107 | } |
| 1108 | .nav-collapse.collapse { |
| 1109 | height: auto; |
| 1110 | } |
| 1111 | .navbar .brand:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1112 | text-decoration: none; |
| 1113 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1114 | .navbar .brand { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1115 | float: left; |
| 1116 | display: block; |
| 1117 | padding: 8px 20px 12px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1118 | font-size: 20px; |
| 1119 | font-weight: 200; |
| 1120 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1121 | color: #ffffff; |
| 1122 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1123 | .navbar .navbar-text { |
| 1124 | margin-bottom: 0; |
| 1125 | line-height: 40px; |
| 1126 | color: #999999; |
| 1127 | } |
| 1128 | .navbar .navbar-text a:hover { |
| 1129 | color: #ffffff; |
| 1130 | background-color: transparent; |
| 1131 | } |
| 1132 | .navbar .btn, .navbar .btn-group { |
| 1133 | margin-top: 5px; |
| 1134 | } |
| 1135 | .navbar .btn-group .btn { |
| 1136 | margin-top: 0; |
| 1137 | } |
| 1138 | .navbar-form { |
| 1139 | margin-bottom: 0; |
| 1140 | *zoom: 1; |
| 1141 | } |
| 1142 | .navbar-form:before, .navbar-form:after { |
| 1143 | display: table; |
| 1144 | content: ""; |
| 1145 | } |
| 1146 | .navbar-form:after { |
| 1147 | clear: both; |
| 1148 | } |
| 1149 | .navbar-form input, .navbar-form select { |
| 1150 | display: inline-block; |
| 1151 | margin-top: 5px; |
| 1152 | margin-bottom: 0; |
| 1153 | } |
| 1154 | .navbar-form .radio, .navbar-form .checkbox { |
| 1155 | margin-top: 5px; |
| 1156 | } |
| 1157 | .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { |
| 1158 | margin-top: 3px; |
| 1159 | } |
| 1160 | .navbar-search { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1161 | position: relative; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1162 | float: left; |
| 1163 | margin-top: 6px; |
| 1164 | margin-bottom: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1165 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1166 | .navbar-search .search-query { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1167 | padding: 4px 9px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1168 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 1169 | font-size: 13px; |
| 1170 | font-weight: normal; |
| 1171 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1172 | color: #ffffff; |
| 1173 | color: rgba(255, 255, 255, 0.75); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1174 | background: #666; |
| 1175 | background: rgba(255, 255, 255, 0.3); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1176 | border: 1px solid #111; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1177 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 1178 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 1179 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1180 | -webkit-transition: none; |
| 1181 | -moz-transition: none; |
| 1182 | -ms-transition: none; |
| 1183 | -o-transition: none; |
| 1184 | transition: none; |
| 1185 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1186 | .navbar-search .search-query :-moz-placeholder { |
| 1187 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1188 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1189 | .navbar-search .search-query::-webkit-input-placeholder { |
| 1190 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1191 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1192 | .navbar-search .search-query:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1193 | color: #ffffff; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1194 | background-color: #999999; |
| 1195 | background-color: rgba(255, 255, 255, 0.5); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1196 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1197 | .navbar-search .search-query:focus, .navbar-search .search-query.focused { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1198 | padding: 5px 10px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1199 | color: #333333; |
| 1200 | text-shadow: 0 1px 0 #ffffff; |
| 1201 | background-color: #ffffff; |
| 1202 | border: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1203 | -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 1204 | -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 1205 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1206 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1207 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1208 | .navbar-fixed-top { |
| 1209 | position: fixed; |
| 1210 | top: 0; |
| 1211 | right: 0; |
| 1212 | left: 0; |
| 1213 | z-index: 1030; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1214 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1215 | .navbar-fixed-top .navbar-inner { |
| 1216 | padding-left: 0; |
| 1217 | padding-right: 0; |
| 1218 | -webkit-border-radius: 0; |
| 1219 | -moz-border-radius: 0; |
| 1220 | border-radius: 0; |
| 1221 | } |
| 1222 | .navbar .nav { |
| 1223 | position: relative; |
| 1224 | left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1225 | display: block; |
| 1226 | float: left; |
| 1227 | margin: 0 10px 0 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1228 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1229 | .navbar .nav.pull-right { |
| 1230 | float: right; |
| 1231 | } |
| 1232 | .navbar .nav > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1233 | display: block; |
| 1234 | float: left; |
| 1235 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1236 | .navbar .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1237 | float: none; |
| 1238 | padding: 10px 10px 11px; |
| 1239 | line-height: 19px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1240 | color: #999999; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1241 | text-decoration: none; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1242 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1243 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1244 | .navbar .nav > li > a:hover { |
| 1245 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1246 | color: #ffffff; |
| 1247 | text-decoration: none; |
| 1248 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1249 | .navbar .nav .active > a, .navbar .nav .active > a:hover { |
| 1250 | color: #ffffff; |
| 1251 | text-decoration: none; |
| 1252 | background-color: #222222; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1253 | background-color: rgba(0, 0, 0, 0.5); |
| 1254 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1255 | .navbar .divider-vertical { |
| 1256 | height: 40px; |
| 1257 | width: 1px; |
| 1258 | margin: 0 9px; |
| 1259 | overflow: hidden; |
| 1260 | background-color: #222222; |
| 1261 | border-right: 1px solid #333333; |
| 1262 | } |
| 1263 | .navbar .nav.pull-right { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1264 | margin-left: 10px; |
| 1265 | margin-right: 0; |
| 1266 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1267 | .navbar .dropdown-menu { |
| 1268 | margin-top: 1px; |
| 1269 | -webkit-border-radius: 4px; |
| 1270 | -moz-border-radius: 4px; |
| 1271 | border-radius: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1272 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1273 | .navbar .dropdown-menu:before { |
| 1274 | content: ''; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1275 | display: inline-block; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1276 | border-left: 7px solid transparent; |
| 1277 | border-right: 7px solid transparent; |
| 1278 | border-bottom: 7px solid #ccc; |
| 1279 | border-bottom-color: rgba(0, 0, 0, 0.2); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1280 | position: absolute; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1281 | top: -7px; |
| 1282 | left: 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1283 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1284 | .navbar .dropdown-menu:after { |
| 1285 | content: ''; |
| 1286 | display: inline-block; |
| 1287 | border-left: 6px solid transparent; |
| 1288 | border-right: 6px solid transparent; |
| 1289 | border-bottom: 6px solid #ffffff; |
| 1290 | position: absolute; |
| 1291 | top: -6px; |
| 1292 | left: 10px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1293 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1294 | .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret { |
| 1295 | border-top-color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1296 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1297 | .navbar .nav .active .caret { |
| 1298 | opacity: 1; |
| 1299 | filter: alpha(opacity=100); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1300 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1301 | .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle { |
| 1302 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1303 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1304 | .navbar .nav .active > .dropdown-toggle:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1305 | color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1306 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1307 | .navbar .nav.pull-right .dropdown-menu { |
| 1308 | left: auto; |
| 1309 | right: 0; |
| 1310 | } |
| 1311 | .navbar .nav.pull-right .dropdown-menu:before { |
| 1312 | left: auto; |
| 1313 | right: 12px; |
| 1314 | } |
| 1315 | .navbar .nav.pull-right .dropdown-menu:after { |
| 1316 | left: auto; |
| 1317 | right: 13px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1318 | } |
| 1319 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1320 | /* ajax spinner */ |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1321 | .navbar #spinner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1322 | display: block; |
| 1323 | float: right; |
| 1324 | width: 20px; |
| 1325 | margin-bottom: -5px; |
| 1326 | margin-top: 10px; |
| 1327 | visibility: hidden; |
| 1328 | } |
| 1329 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1330 | .navbar-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1331 | padding: 0px 20px; |
| 1332 | } |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1333 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1334 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1335 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1336 | * lib/css/bootstrap/dropdown.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1337 | */ |
| 1338 | .dropdown { |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1339 | position: relative; |
| 1340 | } |
| 1341 | .dropdown-toggle { |
| 1342 | *margin-bottom: -3px; |
| 1343 | } |
| 1344 | .dropdown-toggle:active, .open .dropdown-toggle { |
| 1345 | outline: 0; |
| 1346 | } |
| 1347 | .caret { |
| 1348 | display: inline-block; |
| 1349 | width: 0; |
| 1350 | height: 0; |
| 1351 | text-indent: -99999px; |
| 1352 | *text-indent: 0; |
| 1353 | vertical-align: top; |
| 1354 | border-left: 4px solid transparent; |
| 1355 | border-right: 4px solid transparent; |
| 1356 | border-top: 4px solid #000000; |
| 1357 | opacity: 0.3; |
| 1358 | filter: alpha(opacity=30); |
| 1359 | content: "\2193"; |
| 1360 | } |
| 1361 | .dropdown .caret { |
| 1362 | margin-top: 8px; |
| 1363 | margin-left: 2px; |
| 1364 | } |
| 1365 | .dropdown:hover .caret, .open.dropdown .caret { |
| 1366 | opacity: 1; |
| 1367 | filter: alpha(opacity=100); |
| 1368 | } |
| 1369 | .dropdown-menu { |
| 1370 | position: absolute; |
| 1371 | top: 100%; |
| 1372 | left: 0; |
| 1373 | z-index: 1000; |
| 1374 | float: left; |
| 1375 | display: none; |
| 1376 | min-width: 160px; |
| 1377 | max-width: 220px; |
| 1378 | _width: 160px; |
| 1379 | padding: 4px 0; |
| 1380 | margin: 0; |
| 1381 | list-style: none; |
| 1382 | background-color: #ffffff; |
| 1383 | border-color: #ccc; |
| 1384 | border-color: rgba(0, 0, 0, 0.2); |
| 1385 | border-style: solid; |
| 1386 | border-width: 1px; |
| 1387 | -webkit-border-radius: 0 0 5px 5px; |
| 1388 | -moz-border-radius: 0 0 5px 5px; |
| 1389 | border-radius: 0 0 5px 5px; |
| 1390 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1391 | -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1392 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1393 | -webkit-background-clip: padding-box; |
| 1394 | -moz-background-clip: padding; |
| 1395 | background-clip: padding-box; |
| 1396 | *border-right-width: 2px; |
| 1397 | *border-bottom-width: 2px; |
| 1398 | } |
| 1399 | .dropdown-menu.bottom-up { |
| 1400 | top: auto; |
| 1401 | bottom: 100%; |
| 1402 | margin-bottom: 2px; |
| 1403 | } |
| 1404 | .dropdown-menu .divider { |
| 1405 | height: 1px; |
| 1406 | margin: 5px 1px; |
| 1407 | overflow: hidden; |
| 1408 | background-color: #e5e5e5; |
| 1409 | border-bottom: 1px solid #ffffff; |
| 1410 | *width: 100%; |
| 1411 | *margin: -5px 0 5px; |
| 1412 | } |
| 1413 | .dropdown-menu a { |
| 1414 | display: block; |
| 1415 | padding: 3px 15px; |
| 1416 | clear: both; |
| 1417 | font-weight: normal; |
| 1418 | line-height: 18px; |
| 1419 | color: #555555; |
| 1420 | white-space: nowrap; |
| 1421 | } |
| 1422 | .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover { |
| 1423 | color: #ffffff; |
| 1424 | text-decoration: none; |
| 1425 | background-color: #0088cc; |
| 1426 | } |
| 1427 | .dropdown.open { |
| 1428 | *z-index: 1000; |
| 1429 | } |
| 1430 | .dropdown.open .dropdown-toggle { |
| 1431 | color: #ffffff; |
| 1432 | background: #ccc; |
| 1433 | background: rgba(0, 0, 0, 0.3); |
| 1434 | } |
| 1435 | .dropdown.open .dropdown-menu { |
| 1436 | display: block; |
| 1437 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1438 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1439 | /* |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 1440 | * lib/css/bootstrap/tooltip.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1441 | */ |
| 1442 | .tooltip { |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 1443 | position: absolute; |
| 1444 | z-index: 1020; |
| 1445 | display: block; |
| 1446 | visibility: visible; |
| 1447 | padding: 5px; |
| 1448 | font-size: 11px; |
| 1449 | opacity: 0; |
| 1450 | filter: alpha(opacity=0); |
| 1451 | } |
| 1452 | .tooltip.in { |
| 1453 | opacity: 0.8; |
| 1454 | filter: alpha(opacity=80); |
| 1455 | } |
| 1456 | .tooltip.top { |
| 1457 | margin-top: -2px; |
| 1458 | } |
| 1459 | .tooltip.right { |
| 1460 | margin-left: 2px; |
| 1461 | } |
| 1462 | .tooltip.bottom { |
| 1463 | margin-top: 2px; |
| 1464 | } |
| 1465 | .tooltip.left { |
| 1466 | margin-left: -2px; |
| 1467 | } |
| 1468 | .tooltip.top .tooltip-arrow { |
| 1469 | bottom: 0; |
| 1470 | left: 50%; |
| 1471 | margin-left: -5px; |
| 1472 | border-left: 5px solid transparent; |
| 1473 | border-right: 5px solid transparent; |
| 1474 | border-top: 5px solid #000000; |
| 1475 | } |
| 1476 | .tooltip.left .tooltip-arrow { |
| 1477 | top: 50%; |
| 1478 | right: 0; |
| 1479 | margin-top: -5px; |
| 1480 | border-top: 5px solid transparent; |
| 1481 | border-bottom: 5px solid transparent; |
| 1482 | border-left: 5px solid #000000; |
| 1483 | } |
| 1484 | .tooltip.bottom .tooltip-arrow { |
| 1485 | top: 0; |
| 1486 | left: 50%; |
| 1487 | margin-left: -5px; |
| 1488 | border-left: 5px solid transparent; |
| 1489 | border-right: 5px solid transparent; |
| 1490 | border-bottom: 5px solid #000000; |
| 1491 | } |
| 1492 | .tooltip.right .tooltip-arrow { |
| 1493 | top: 50%; |
| 1494 | left: 0; |
| 1495 | margin-top: -5px; |
| 1496 | border-top: 5px solid transparent; |
| 1497 | border-bottom: 5px solid transparent; |
| 1498 | border-right: 5px solid #000000; |
| 1499 | } |
| 1500 | .tooltip-inner { |
| 1501 | max-width: 200px; |
| 1502 | padding: 3px 8px; |
| 1503 | color: #ffffff; |
| 1504 | text-align: center; |
| 1505 | text-decoration: none; |
| 1506 | background-color: #000000; |
| 1507 | -webkit-border-radius: 4px; |
| 1508 | -moz-border-radius: 4px; |
| 1509 | border-radius: 4px; |
| 1510 | } |
| 1511 | .tooltip-arrow { |
| 1512 | position: absolute; |
| 1513 | width: 0; |
| 1514 | height: 0; |
| 1515 | } |
| 1516 | .popover { |
| 1517 | position: absolute; |
| 1518 | top: 0; |
| 1519 | left: 0; |
| 1520 | z-index: 1010; |
| 1521 | display: none; |
| 1522 | padding: 5px; |
| 1523 | } |
| 1524 | .popover.top { |
| 1525 | margin-top: -5px; |
| 1526 | } |
| 1527 | .popover.right { |
| 1528 | margin-left: 5px; |
| 1529 | } |
| 1530 | .popover.bottom { |
| 1531 | margin-top: 5px; |
| 1532 | } |
| 1533 | .popover.left { |
| 1534 | margin-left: -5px; |
| 1535 | } |
| 1536 | .popover.top .arrow { |
| 1537 | bottom: 0; |
| 1538 | left: 50%; |
| 1539 | margin-left: -5px; |
| 1540 | border-left: 5px solid transparent; |
| 1541 | border-right: 5px solid transparent; |
| 1542 | border-top: 5px solid #000000; |
| 1543 | } |
| 1544 | .popover.right .arrow { |
| 1545 | top: 50%; |
| 1546 | left: 0; |
| 1547 | margin-top: -5px; |
| 1548 | border-top: 5px solid transparent; |
| 1549 | border-bottom: 5px solid transparent; |
| 1550 | border-right: 5px solid #000000; |
| 1551 | } |
| 1552 | .popover.bottom .arrow { |
| 1553 | top: 0; |
| 1554 | left: 50%; |
| 1555 | margin-left: -5px; |
| 1556 | border-left: 5px solid transparent; |
| 1557 | border-right: 5px solid transparent; |
| 1558 | border-bottom: 5px solid #000000; |
| 1559 | } |
| 1560 | .popover.left .arrow { |
| 1561 | top: 50%; |
| 1562 | right: 0; |
| 1563 | margin-top: -5px; |
| 1564 | border-top: 5px solid transparent; |
| 1565 | border-bottom: 5px solid transparent; |
| 1566 | border-left: 5px solid #000000; |
| 1567 | } |
| 1568 | .popover .arrow { |
| 1569 | position: absolute; |
| 1570 | width: 0; |
| 1571 | height: 0; |
| 1572 | } |
| 1573 | .popover-inner { |
| 1574 | padding: 3px; |
| 1575 | width: 280px; |
| 1576 | overflow: hidden; |
| 1577 | background: #000000; |
| 1578 | background: rgba(0, 0, 0, 0.8); |
| 1579 | -webkit-border-radius: 6px; |
| 1580 | -moz-border-radius: 6px; |
| 1581 | border-radius: 6px; |
| 1582 | -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1583 | -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1584 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1585 | } |
| 1586 | .popover-title { |
| 1587 | padding: 9px 15px; |
| 1588 | line-height: 1; |
| 1589 | background-color: #f5f5f5; |
| 1590 | border-bottom: 1px solid #eee; |
| 1591 | -webkit-border-radius: 3px 3px 0 0; |
| 1592 | -moz-border-radius: 3px 3px 0 0; |
| 1593 | border-radius: 3px 3px 0 0; |
| 1594 | } |
| 1595 | .popover-content { |
| 1596 | padding: 14px; |
| 1597 | background-color: #ffffff; |
| 1598 | -webkit-border-radius: 0 0 3px 3px; |
| 1599 | -moz-border-radius: 0 0 3px 3px; |
| 1600 | border-radius: 0 0 3px 3px; |
| 1601 | -webkit-background-clip: padding-box; |
| 1602 | -moz-background-clip: padding-box; |
| 1603 | background-clip: padding-box; |
| 1604 | } |
| 1605 | .popover-content p, .popover-content ul, .popover-content ol { |
| 1606 | margin-bottom: 0; |
| 1607 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1608 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 1609 | /* |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1610 | * lib/css/ui/fonts.css |
| 1611 | */ |
| 1612 | @font-face { |
| 1613 | font-family: 'Pontano Sans'; |
| 1614 | font-style: normal; |
| 1615 | font-weight: 800; |
| 1616 | src: url('../lib/css/fonts/pontanosans.woff') format('woff'); |
| 1617 | } |
| 1618 | |
| 1619 | @font-face { |
| 1620 | font-family: 'Droid Sans'; |
| 1621 | font-style: normal; |
| 1622 | font-weight: normal; |
| 1623 | src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff'); |
| 1624 | } |
| 1625 | |
| 1626 | @font-face { |
| 1627 | font-family: 'PT Sans'; |
| 1628 | font-style: normal; |
| 1629 | font-weight: normal; |
| 1630 | src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff'); |
| 1631 | } |
| 1632 | |
| 1633 | @font-face { |
| 1634 | font-family: 'Open Sans'; |
| 1635 | font-style: normal; |
| 1636 | font-weight: 400; |
| 1637 | src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff'); |
| 1638 | } |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1639 | |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1640 | @font-face { |
| 1641 | font-family: 'Lato'; |
| 1642 | font-style: normal; |
| 1643 | font-weight: 400; |
| 1644 | src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff'); |
| 1645 | } |
| 1646 | |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1647 | @font-face { |
| 1648 | font-family: 'Cabin'; |
| 1649 | font-style: normal; |
| 1650 | font-weight: 400; |
| 1651 | src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff'); |
| 1652 | } |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1653 | |
Rushabh Mehta | f7f7f63 | 2012-04-11 15:18:24 +0530 | [diff] [blame] | 1654 | @font-face { |
| 1655 | font-family: 'Pacifico'; |
| 1656 | font-style: normal; |
| 1657 | font-weight: normal; |
| 1658 | src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff'); |
| 1659 | } |
| 1660 | |
| 1661 | |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1662 | |
| 1663 | /* |
| 1664 | * lib/css/ui/list.css |
| 1665 | */ |
| 1666 | .hide { |
| 1667 | display: none; |
| 1668 | } |
| 1669 | |
| 1670 | .list-filters { |
| 1671 | margin: 7px 0px; |
| 1672 | } |
| 1673 | |
| 1674 | .wnlist .img-load { |
| 1675 | display: none; |
| 1676 | float: left; |
| 1677 | margin-bottom: 8px; |
| 1678 | } |
| 1679 | |
| 1680 | /* list-row */ |
| 1681 | div.list-row { |
| 1682 | border-bottom: 1px solid #eee; |
| 1683 | padding: 5px 0px; |
| 1684 | } |
| 1685 | div.list-row:hover { |
| 1686 | background-color: #eef |
| 1687 | } |
| 1688 | |
| 1689 | div.list-row .label { |
| 1690 | margin-right: 4px; |
| 1691 | } |
| 1692 | |
| 1693 | div.list-row table { |
| 1694 | table-layout: fixed; |
| 1695 | border-collapse: collapse; |
| 1696 | width: 100%; |
| 1697 | } |
| 1698 | |
| 1699 | div.list-row table td { |
| 1700 | overflow: hidden; |
Anand Doshi | c9456c1 | 2012-03-28 17:48:30 +0530 | [diff] [blame] | 1701 | /*padding-right: 3px;*/ |
| 1702 | padding: 0px 3px; |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1703 | vertical-align: middle; |
| 1704 | height: 24px; |
| 1705 | max-height: 24px; |
Anand Doshi | c9456c1 | 2012-03-28 17:48:30 +0530 | [diff] [blame] | 1706 | word-wrap: break-word; |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | div.paging-button { |
| 1710 | text-align: center; |
| 1711 | padding: 11px 0px; |
| 1712 | } |
| 1713 | |
| 1714 | div.show_filters { |
| 1715 | display: none; |
| 1716 | } |
| 1717 | |
| 1718 | div.filter_list { |
| 1719 | padding: 13px; |
| 1720 | } |
| 1721 | |
| 1722 | div.show_filters.well { |
| 1723 | margin-top: 11px; |
| 1724 | margin-bottom: 11px; |
| 1725 | } |
| 1726 | |
| 1727 | div.filter_list .run_btn { |
| 1728 | text-align: right; |
| 1729 | } |
| 1730 | |
| 1731 | div.filter_list .add_filter { |
| 1732 | margin: 3px 0px; |
| 1733 | } |
| 1734 | |
| 1735 | div.list_filter { |
| 1736 | margin: 7px 0px; |
| 1737 | } |
| 1738 | |
| 1739 | div.list_filter input, div.list_filter select { |
| 1740 | width: 130px; |
| 1741 | margin-right: 7px; |
| 1742 | } |
| 1743 | |
| 1744 | /* bar */ |
| 1745 | |
| 1746 | span.bar-outer { |
| 1747 | display: inline-block; |
| 1748 | margin: 0px 7px; |
| 1749 | margin-top: 3px; |
| 1750 | background-color: #fff; |
| 1751 | border: 1px solid #aaa; |
| 1752 | height: 10px; |
| 1753 | } |
| 1754 | |
| 1755 | span.bar-inner { |
| 1756 | display: inline-block; |
| 1757 | background-color: #bdf; |
| 1758 | height: 100%; |
| 1759 | margin-bottom: 2px; |
| 1760 | float: left; |
| 1761 | } |
| 1762 | span.bar-complete { |
| 1763 | background-color: #009900; |
| 1764 | } |
| 1765 | span.bar-empty { |
| 1766 | background-color: #990000; |
| 1767 | } |
| 1768 | |
| 1769 | |
| 1770 | /* stats */ |
| 1771 | |
| 1772 | div.stat-wrapper { |
| 1773 | margin-bottom: 19px; |
| 1774 | } |
| 1775 | |
| 1776 | div.stat-grid { |
| 1777 | border: 2px solid #bbb; |
| 1778 | background-color: white; |
| 1779 | border-radius: 5px; |
| 1780 | -moz-border-radius: 5px; |
| 1781 | -webkit-border-radius: 5px; |
| 1782 | overflow: hidden; |
| 1783 | } |
| 1784 | |
| 1785 | div.stat-label { |
| 1786 | position: relative; |
| 1787 | padding: 3px; |
| 1788 | text-align: center; |
| 1789 | } |
| 1790 | div.stat-label, div.stat-label a { |
| 1791 | z-index: 5; |
| 1792 | } |
| 1793 | |
| 1794 | div.stat-item { |
| 1795 | position: relative; |
| 1796 | border-bottom: 1px solid #ddd; |
| 1797 | } |
| 1798 | div.stat-item:last-child { |
| 1799 | border-bottom: 0px solid #ddd; |
| 1800 | } |
| 1801 | |
| 1802 | div.stat-bar { |
| 1803 | position: absolute; |
| 1804 | left: 0px; |
| 1805 | background-color: #def; |
| 1806 | height: 100%; |
| 1807 | z-index: 0; |
| 1808 | } |
| 1809 | |
| 1810 | |
| 1811 | |
| 1812 | |
| 1813 | |
| 1814 | /* |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1815 | * erpnext/startup/startup.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1816 | */ |
| 1817 | h1, h2, h3, h4, h5 { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1818 | font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif; |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1819 | font-weight: normal; |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1820 | margin-top: 0.2em; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | body { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1824 | font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif; |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 1825 | font-size: 13px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1826 | } |
| 1827 | |
| 1828 | span, div, td, input, textarea, button, select { |
| 1829 | font-family: inherit; |
| 1830 | } |
| 1831 | |
| 1832 | body { |
Rushabh Mehta | 7af1c88 | 2012-03-22 11:59:46 +0530 | [diff] [blame] | 1833 | background: url(../images/redbeech.jpg) repeat; |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1834 | color: #616161; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1835 | } |
| 1836 | |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 1837 | .small { |
| 1838 | font-size: 11.5px; |
| 1839 | } |
| 1840 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1841 | .erpnext-footer { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 1842 | margin: 11px auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1843 | text-align: center; |
| 1844 | } |
| 1845 | |
Anand Doshi | db62876 | 2012-02-24 17:56:00 +0530 | [diff] [blame] | 1846 | .navbar-new-comments { |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1847 | margin: -3px 0px; |
| 1848 | padding: 2px; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1849 | min-width: 20px; |
| 1850 | text-align: center; |
| 1851 | display: inline-block; |
| 1852 | border-radius: 2px; |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1853 | color: #999999; |
| 1854 | background-color: #333131; |
| 1855 | } |
| 1856 | |
| 1857 | .navbar-new-comments:hover, |
| 1858 | .navbar-new-comments:active, |
| 1859 | .navbar-new-comments:focus { |
| 1860 | color: #fff; |
| 1861 | } |
| 1862 | |
| 1863 | |
| 1864 | .navbar-new-comments-true { |
| 1865 | color: #fff; |
| 1866 | background-color: #B00D07; |
| 1867 | } |
| 1868 | |
| 1869 | .navbar-icon-home { |
| 1870 | vertical-align: middle; |
| 1871 | opacity:0.4; |
| 1872 | Filter:alpha(opacity=40); /* For IE8 and earlier */ |
| 1873 | } |
| 1874 | |
| 1875 | .navbar-icon-home:hover, |
| 1876 | .navbar-icon-home:focus, |
Anand Doshi | ac14412 | 2012-02-27 19:16:24 +0530 | [diff] [blame] | 1877 | .navbar-icon-home:active, |
| 1878 | .navbar-icon-home-hover{ |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1879 | opacity:1; |
| 1880 | Filter:alpha(opacity=100); /* For IE8 and earlier */ |
| 1881 | } |
| 1882 | |
| 1883 | /*extra size menus for recent*/ |
| 1884 | .dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{ |
| 1885 | min-width: 160px !important; |
| 1886 | max-width: 260px !important; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1887 | } |
| 1888 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1889 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1890 | /* |
| 1891 | * erpnext/website/css/website.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1892 | */ |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1893 | div#body_div, header .container, .content, #opened-page-selector, footer { |
| 1894 | width: 900px; |
| 1895 | } |
| 1896 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1897 | .layout_wrapper { |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1898 | padding: 27px; |
Rushabh Mehta | aa848be | 2012-02-17 12:06:33 +0530 | [diff] [blame] | 1899 | } |
| 1900 | |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 1901 | p, li { |
| 1902 | line-height: 1.6em; |
| 1903 | } |
| 1904 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1905 | pre { |
| 1906 | background-color: #F8F8F8; |
| 1907 | border: 1px solid #CCCCCC; |
| 1908 | border-radius: 3px 3px 3px 3px; |
| 1909 | font-size: 13px; |
| 1910 | line-height: 19px; |
| 1911 | overflow: auto; |
| 1912 | padding: 6px 10px; |
| 1913 | margin-bottom: 9px; |
| 1914 | } |
| 1915 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1916 | .web-content input[type="text"], .web-content input[type="password"], .web-content select { |
| 1917 | min-width: 180px; |
| 1918 | } |
| 1919 | |
Rushabh Mehta | 13531b7 | 2012-02-20 12:35:23 +0530 | [diff] [blame] | 1920 | .web-head-section { |
| 1921 | margin-bottom: 20px |
| 1922 | } |
| 1923 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1924 | .web-main-section { |
| 1925 | width: 65%; |
| 1926 | float: left; |
| 1927 | margin-bottom: 20px; |
| 1928 | } |
| 1929 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1930 | .web-side-section { |
| 1931 | width: 30%; |
| 1932 | float: right; |
| 1933 | margin-bottom: 20px; |
| 1934 | margin-right: 15px; |
| 1935 | color: #606060; |
| 1936 | overflow-x: hidden; |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1937 | font-size: 90%; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1938 | } |
| 1939 | |
| 1940 | .web-page-status { |
| 1941 | padding: 7px; |
| 1942 | color: #777; |
| 1943 | clear: both; |
| 1944 | text-align: right; |
| 1945 | } |
| 1946 | |
| 1947 | .web-page-status a, |
| 1948 | .web-page-status a:hover, |
| 1949 | .web-page-status a:visited { |
| 1950 | padding: 2px; |
| 1951 | background-color: #777; |
| 1952 | color: #FFF; |
| 1953 | text-decoration: none; |
| 1954 | } |
| 1955 | |
| 1956 | .web-page-status a:hover { |
| 1957 | background-color: #444; |
| 1958 | } |
| 1959 | |
| 1960 | footer { |
| 1961 | color: #777; |
| 1962 | } |
| 1963 | |
| 1964 | .web-footer { |
| 1965 | color: inherit; |
| 1966 | text-align: center; |
| 1967 | margin: 10px; |
| 1968 | line-height: 1.7; |
| 1969 | } |
| 1970 | |
| 1971 | .web-footer div, .web-footer a { |
| 1972 | font-size: 11px; |
| 1973 | } |
| 1974 | |
| 1975 | .web-footer-menu { |
| 1976 | margin-bottom: 7px; |
| 1977 | } |
| 1978 | footer a, footer a:visited { |
| 1979 | color: #777; |
| 1980 | } |
| 1981 | |
| 1982 | footer a:hover { |
| 1983 | background-color: #777; |
| 1984 | color: #fff; |
| 1985 | } |
| 1986 | |
| 1987 | .web-footer-menu ul { |
| 1988 | list-style: none; |
| 1989 | margin: 0px; |
| 1990 | padding: 0px; |
| 1991 | } |
| 1992 | |
| 1993 | .web-footer-menu ul li { |
| 1994 | display: inline; |
| 1995 | padding: 2px 15px; |
| 1996 | border-right: 1px solid #999; |
| 1997 | } |
| 1998 | |
| 1999 | .web-footer-menu ul li:last-child { |
| 2000 | border-right: 0px solid #777 !important; |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2001 | } |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 2002 | |
| 2003 | /* slide view */ |
| 2004 | |
| 2005 | .next-slide { |
| 2006 | margin: 0px -27px 100px -27px; |
| 2007 | background: #ffffff; /* Old browsers */ |
| 2008 | background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */ |
| 2009 | background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */ |
| 2010 | background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */ |
| 2011 | background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */ |
| 2012 | background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */ |
| 2013 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */ |
| 2014 | height: 36px; |
| 2015 | } |
| 2016 | |
| 2017 | .slide-shadow { |
| 2018 | background: #eeeeee; /* Old browsers */ |
| 2019 | background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */ |
| 2020 | background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */ |
| 2021 | background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */ |
| 2022 | background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */ |
| 2023 | background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */ |
| 2024 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */ |
| 2025 | height: 3px; |
| 2026 | margin: 100px -27px 0px -27px; |
| 2027 | border-top: 1px solid #bababa; |
| 2028 | } |
| 2029 | |
| 2030 | .two-column { |
| 2031 | width: 40%; |
| 2032 | float: left; |
| 2033 | padding: 5%; |
| 2034 | } |
| 2035 | |
| 2036 | .clear { |
| 2037 | clear: both; |
| 2038 | } |
| 2039 | |
| 2040 | /* */ |