Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.03 KB | None | 0 0
  1. /* main page styles */
  2. p {
  3. margin: 1em;
  4. }
  5.  
  6. table.messages td pre {
  7. white-space: pre-wrap;
  8. }
  9.  
  10. th.header:first-child {
  11. background-color: #4a535b;
  12. color: white;
  13. }
  14.  
  15. body.body {
  16. font-family: sans-serif, Arial, Helvetica;
  17. background-color: #fff;
  18. color: #4a535b;
  19. }
  20.  
  21. table.body tbody > tr {
  22. height: 1em;
  23. }
  24.  
  25. a[href], a[href]:link {
  26. color: #2f455b;
  27. text-decoration: none;
  28. border-bottom: 1px #2f455b dotted;
  29.  
  30. }
  31. a[href]:hover {
  32. color:blue;
  33. border-bottom: 1px #2f455b solid;
  34. }
  35.  
  36. table.body {
  37. border: 0;
  38. padding: 0;
  39. border-spacing: 0;
  40. border-collapse: separate;
  41. }
  42.  
  43. td.page-header-left {
  44. padding: 5px;
  45. border-bottom: 1px solid #444;
  46. }
  47. td.sidebar {
  48. padding: 1px 0 0 1px;
  49. white-space: nowrap;
  50. }
  51.  
  52. /* don't display the sidebar when printing */
  53. @media print {
  54. td.page-header-left {
  55. display: none;
  56. }
  57. td.sidebar {
  58. display: none;
  59. }
  60. .index-controls {
  61. display: none;
  62. }
  63. #searchbox {
  64. display: none;
  65. }
  66. }
  67.  
  68. td.page-header-top, td.page-header-left {
  69. padding: 5px;
  70. border-bottom: 1px solid #444;
  71. margin-bottom: .5em;
  72.  
  73. }
  74.  
  75. div#searchbox {
  76. float: right;
  77. padding-top: 1em;
  78. }
  79.  
  80. div#searchbox input#search-text {
  81. width: 10em;
  82. }
  83.  
  84. form {
  85. margin: 0;
  86. }
  87.  
  88. textarea {
  89. font-family: monospace;
  90. }
  91.  
  92. p.classblock,
  93. p.userblock,
  94. table.form,
  95. table.messages,
  96. table:not(.body) {
  97. border: 1px solid #444;
  98. -moz-box-shadow: 5px 5px 5px #ccc;
  99. -webkit-box-shadow: 5px 5px 5px #ccc;
  100. box-shadow: 5px 5px 5px #ccc;
  101. }
  102.  
  103. td.sidebar p.classblock,
  104. td.sidebar p.userblock {
  105. padding: 1em .5em;
  106. margin: 1em 1em;
  107. background-color: #eef;
  108. color: #000;
  109. }
  110.  
  111. .form-small {
  112. padding: 0;
  113. font-size: 75%;
  114. }
  115.  
  116.  
  117. td.content {
  118. padding: 1px 5px 1px 5px;
  119. vertical-align: top;
  120. width: 100%;
  121. }
  122.  
  123. td.date, th.date {
  124. white-space: nowrap;
  125. }
  126.  
  127. p.ok-message {
  128. background-color: #22bb22;
  129. padding: 5px;
  130. color: white;
  131. font-weight: bold;
  132. }
  133. p.error-message {
  134. background-color: #bb2222;
  135. padding: 5px;
  136. color: white;
  137. font-weight: bold;
  138. }
  139. p.error-message a[href] {
  140. color: white;
  141. text-decoration: underline;
  142. }
  143.  
  144.  
  145. /* style for search forms */
  146. ul.search-checkboxes {
  147. display: inline;
  148. padding: 0;
  149. list-style: none;
  150. }
  151. ul.search-checkboxes > li {
  152. display: inline;
  153. padding-right: .5em;
  154. }
  155.  
  156.  
  157. /* style for forms */
  158. table.form {
  159. background-color: #ffffff;
  160. color: #000000;
  161. padding: 2px;
  162. border-spacing: 0;
  163. border-collapse: separate;
  164. }
  165.  
  166. table.form th {
  167. color: #338;
  168. text-align: right;
  169. vertical-align: top;
  170. font-weight: normal;
  171. white-space: nowrap;
  172. }
  173.  
  174. table.form tr:first-child th {
  175. background-color: inherit;
  176. }
  177.  
  178. table.form tr:first-child {
  179. background-color: #b7cce0;
  180. color: #338;
  181. vertical-align: top;
  182. font-weight: normal;
  183. white-space: nowrap;
  184. }
  185.  
  186. table.form th.required {
  187. font-weight: bold;
  188. }
  189.  
  190. table.form td {
  191. padding: 0em 2em;
  192. empty-cells: show;
  193. vertical-align: top;
  194. }
  195.  
  196. table.form td.optional {
  197. font-weight: bold;
  198. font-style: italic;
  199. }
  200.  
  201. table.form td.html {
  202. color: #777;
  203. }
  204.  
  205. /* style for lists */
  206. table.list {
  207. border-spacing: 0;
  208. border-collapse: separate;
  209. width: 100%;
  210. }
  211.  
  212. table.list th {
  213. padding: 0 4px 0 4px;
  214. color: #404070;
  215. background-color: #eef;
  216. border: 1px solid white;
  217. vertical-align: top;
  218. empty-cells: show;
  219. }
  220. table.list th a[href]:hover { color: #404070 }
  221. table.list th a[href]:link { color: #404070 }
  222. table.list th a[href] { color: #404070 }
  223. table.list th.group {
  224. background-color: #f4f4ff;
  225. text-align: center;
  226. }
  227.  
  228. table.list td {
  229. padding: 0 4px 0 4px;
  230. border: 1px solid white;
  231. color: #404070;
  232. background-color: #efefef;
  233. vertical-align: top;
  234. empty-cells: show;
  235. }
  236.  
  237. table.list tr.navigation th {
  238. width: 33%;
  239. border-style: hidden;
  240. text-align: center;
  241. }
  242. table.list tr.navigation td {
  243. border: none
  244. }
  245. table.list tr.navigation th:first-child {
  246. text-align: left;
  247. }
  248. table.list tr.navigation th:last-child {
  249. text-align: right;
  250. }
  251.  
  252.  
  253. /* style for message displays */
  254. table.messages {
  255. background-color: #b7cce0;
  256. border-spacing: 0;
  257. border-collapse: separate;
  258. width: 100%;
  259. }
  260.  
  261. table.messages th {
  262. color: #000;
  263. font-weight: bold;
  264. text-align: left;
  265. border-bottom: 1px solid #afafaf;
  266. }
  267.  
  268. table.messages td {
  269. font-family: monospace;
  270. background-color: #ffffff;
  271. border-bottom: 1px solid #afafaf;
  272. color: black;
  273. empty-cells: show;
  274. border-right: 1px solid #afafaf;
  275. vertical-align: top;
  276. padding: 2px 5px 2px 5px;
  277. }
  278.  
  279. table.messages td.content {
  280. margin-bottom: 1em;
  281. }
  282.  
  283. table.messages td:first-child {
  284. border-left: 0px solid #afafaf;
  285. border-right: 0px solid #afafaf;
  286. }
  287.  
  288. /* style for file displays */
  289. table.files {
  290. border-spacing: 0;
  291. border-collapse: separate;
  292. width: 100%;
  293. }
  294.  
  295. /*
  296. table.files th.header{
  297. padding-top: 10px;
  298. border-bottom: 1px solid gray;
  299. font-weight: bold;
  300. background-color: white;
  301. color: #707040;
  302. } */
  303.  
  304. table.files th {
  305. border-bottom: 1px solid #afafaf;
  306. font-weight: bold;
  307. text-align: left;
  308. }
  309.  
  310. table.files td {
  311. font-family: monospace;
  312. empty-cells: show;
  313. }
  314.  
  315. /* style for history displays */
  316. table.history {
  317. border-spacing: 0;
  318. border-collapse: separate;
  319. width: 100%;
  320. }
  321.  
  322. /*table.history th.header{
  323. padding-top: 10px;
  324. border-bottom: 1px solid gray;
  325. font-weight: bold;
  326. background-color: white;
  327. color: #707040;
  328. font-size: 100%;
  329. }*/
  330.  
  331. table.history th {
  332. border-bottom: 1px solid #afafaf;
  333. font-weight: bold;
  334. text-align: left;
  335. font-size: 90%;
  336. }
  337.  
  338. table.history td {
  339. font-size: 90%;
  340. vertical-align: top;
  341. empty-cells: show;
  342. }
  343.  
  344.  
  345. /* style for class list */
  346. table.classlist {
  347. border-spacing: 0;
  348. border-collapse: separate;
  349. width: 100%;
  350. }
  351. /*
  352. table.classlist th.header{
  353. padding-top: 10px;
  354. border-bottom: 1px solid gray;
  355. font-weight: bold;
  356. background-color: white;
  357. color: #707040;
  358. }*/
  359.  
  360. table.classlist th {
  361. font-weight: bold;
  362. text-align: left;
  363. }
  364.  
  365.  
  366. /* style for class help display */
  367. table.classhelp { /* the table-layout: fixed; */
  368. table-layout: fixed; /* compromises quality for speed */
  369. overflow: hidden;
  370. font-size: .9em;
  371. padding-bottom: 3em;
  372. }
  373.  
  374. table.classhelp th {
  375. font-weight: normal;
  376. text-align: left;
  377. color: #444;
  378. background-color: #efefef;
  379. border-bottom: 1px solid #afafaf;
  380. border-top: 1px solid #afafaf;
  381. text-transform: uppercase;
  382. vertical-align: middle;
  383. line-height:1.5em;
  384. }
  385.  
  386. table.classhelp td {
  387. vertical-align: middle;
  388. padding-right: .2em;
  389. border-bottom: 1px solid #efefef;
  390. text-align: left;
  391. empty-cells: show;
  392. white-space: nowrap;
  393. vertical-align: middle;
  394. }
  395.  
  396. table.classhelp tr:hover {
  397. background-color: #eee;
  398. }
  399.  
  400. label.classhelp-label {
  401. cursor: pointer;
  402. }
  403.  
  404. #classhelp-controls {
  405. position: fixed;
  406. display: block;
  407. top: auto;
  408. right: 0;
  409. bottom: 0;
  410. left: 0;
  411. padding: .5em;
  412. border-top: 2px solid #444;
  413. background-color: #eee;
  414. }
  415.  
  416. #classhelp-controls input.apply {
  417. width: 7em;
  418. font-weight: bold;
  419. margin-right: 2em;
  420. margin-left: 2em;
  421. }
  422.  
  423. #classhelp-controls input.preview {
  424. margin-right: 3em;
  425. margin-left: 1em;
  426. }
  427.  
  428. /* style for "other" displays */
  429. table.otherinfo {
  430. border-spacing: 0;
  431. border-collapse: separate;
  432. width: 100%;
  433. }
  434.  
  435. /*
  436. table.otherinfo th.header{
  437. padding-top: 10px;
  438. border-bottom: 1px solid gray;
  439. font-weight: bold;
  440. background-color: white;
  441. color: #707040;
  442. }*/
  443.  
  444. table.otherinfo th {
  445. border-bottom: 1px solid #afafaf;
  446. font-weight: bold;
  447. text-align: left;
  448. }
  449.  
  450. input[type="text"]:focus,
  451. input[type="checkbox"]:focus,
  452. input[type="radio"]:focus,
  453. input[type="password"]:focus,
  454. textarea:focus, select:focus {
  455. background-color: #ffffc0;
  456. }
  457.  
  458. .calendar_display {
  459. text-align: center;
  460. }
  461.  
  462. .calendar_display td {
  463. padding: 1px 4px 1px 4px;
  464. }
  465.  
  466. .calendar_display .today {
  467. background-color: #afafaf;
  468. }
  469.  
  470. /* vim: sts=2 sw=2 et
  471. */
  472. /* SHA: a04232a326156d381a782cccb31d6d3948546227 */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement