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