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