[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 /** 2 * @provides phabricator-core-css 3 */ 4 5 body { 6 /* Always show the vertical scrollbar so that going from a page without a 7 scrollbar to a page with a scrollbar doesn't make content jump a few 8 pixels left when the viewport narrows. */ 9 overflow-y: scroll; 10 /* reset behavior in ie7, as it will add an extra scrollbar regardless 11 selector * targets ie6 and ie7 only */ 12 *overflow-y: auto; 13 } 14 15 .device-phone { 16 /* By default, the iPhone zooms all text on the page by some percentage when 17 you rotate from portrait mode to landscape mode. Disable this, since it 18 breaks lots of things and prevents you from using landscape to see more 19 columns in source code views. */ 20 -webkit-text-size-adjust: none; 21 } 22 23 body, div, dl, dt, dd, ul, ol, li, 24 h1, h2, h3, h4, h5, h6, 25 pre, form, fieldset, 26 p, blockquote, th, td, button { 27 margin: 0; 28 padding: 0; 29 border: 0; 30 } 31 32 table { 33 border-collapse: collapse; 34 border-spacing: 0; 35 } 36 37 fieldset, img { 38 border: 0; 39 } 40 41 address, caption, cite, code, dfn, th, var { 42 font-style: normal; 43 font-weight: normal; 44 } 45 46 ol, ul { 47 list-style: none; 48 } 49 50 caption, th { 51 text-align: left; 52 } 53 54 td, th { 55 vertical-align: top; 56 } 57 58 h1, h2, h3, h4, h5, h6 { 59 font-size: 100%; 60 font-weight: bold; 61 } 62 63 body { 64 font: 13px/1.231 'Helvetica Neue', Helvetica, Arial, sans-serif; 65 direction: ltr; 66 text-align: left; 67 unicode-bidi: embed; 68 background: #ebecee; 69 text-rendering: optimizeLegibility; 70 } 71 72 textarea { 73 font: inherit; 74 } 75 76 table { 77 font-size: inherit; 78 font: 100%; 79 } 80 81 h1 { 82 font-size: 16px; 83 } 84 85 h2 { 86 font-size: 14px; 87 } 88 89 a { 90 -moz-outline-style: none; 91 text-decoration: none; 92 color: #18559D; 93 cursor: pointer; 94 } 95 96 a:hover { 97 text-decoration: underline; 98 } 99 100 img { 101 display: block; 102 } 103 104 .busy { 105 position: fixed; 106 bottom: 16px; 107 right: 16px; 108 width: 44px; 109 height: 44px; 110 border-radius: 5px; 111 opacity: 0.4; 112 background: #000 url(/rsrc/image/loading/compass_24.gif) center no-repeat; 113 } 114 115 .grouped:after { 116 content: ""; 117 display: table; 118 clear: both; 119 } 120 121 hr { 122 height: 1px; 123 background: #bbbbbb; 124 border: none; 125 } 126 127 .aural-only { 128 position: absolute !important; 129 clip: rect(1px, 1px, 1px, 1px); 130 131 /* NOTE: Without this, Safari sometimes lays these elements out at normal 132 size. An example is the label on the comment action menu on timelines. */ 133 134 width: 0; 135 height: 0; 136 overflow: hidden; 137 } 138 139 .visual-only { 140 /* These elements are hidden by the 'aria-hidden' attribute. */ 141 } 142 143 .audible .aural-only { 144 clip: auto; 145 width: auto; 146 height: auto; 147 overflow: auto; 148 background: #006699; 149 color: #ffffff; 150 } 151 152 .audible .aural-only a { 153 color: #ffffff; 154 font-weight: bold; 155 } 156 157 .audible .visual-only { 158 position: absolute !important; 159 background: #990066; 160 opacity: 0.25; 161 } 162 163 .routing-bar { 164 position: fixed; 165 top: 0; 166 width: 100%; 167 height: 2px; 168 background: {$darkbluetext}; 169 z-index: 80; 170 box-shadow: 0 2px 1px rgba(0, 128, 255, 0.25); 171 } 172 173 .routing-progress { 174 position: fixed; 175 top: 0; 176 left: 0; 177 height: 2px; 178 background: {$sky}; 179 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |