gui7.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*body{background-color: red;}*/
  2. #page{width:1000px; margin:0 auto;}
  3. .sidebar{width:15%; min-width:150px;}
  4. #center{min-width:800px;}
  5. .one-sidebar #center{width:83%;}
  6. .two-sidebar #center{width:68%;}
  7. .sidebar, .one-sidebar #center, .two-sidebar #center{display:inline-block; vertical-align: top;}
  8. .sidebar .region{padding:0 15px;}
  9. /**
  10. * help description on hover
  11. */
  12. form:not( #views-ui-config-item-form ) .form-item {
  13. position:relative;
  14. /* padding:9px;*/
  15. }
  16. form:not( #views-ui-config-item-form ) .form-item .description{
  17. position:absolute;
  18. bottom:140%;
  19. /* right:-15px;*/
  20. z-index:5;
  21. left:50%;
  22. color:#1A1A1A;
  23. line-height:1.1;
  24. background:url(../images/popup.png) 50% 100% no-repeat;
  25. width:240px;
  26. margin:0px 0px -15px;
  27. padding:9px 10px 20px;
  28. display:none;
  29. border-top: 1px solid #9F9F9F;
  30. }
  31. form:not( #views-ui-config-item-form ) .form-item:hover {
  32. z-index:1;
  33. height:auto; /* Fix for flicker in IE7 */
  34. }
  35. form:not( #views-ui-config-item-form ) .form-item:hover > .description { display:block; }
  36. /**
  37. * Messages.
  38. */
  39. div.messages {
  40. position:relative;
  41. padding: 9px;
  42. margin: 0.5em 0 0;
  43. color: #036;
  44. background: #bdf;
  45. border: 1px solid #ace;
  46. -moz-border-radius: 5px;
  47. -webkit-border-radius: 5px;
  48. border-radius: 5px;
  49. }
  50. div.messages span.close{
  51. font-weight:bold;
  52. cursor:pointer;
  53. padding:0 5px;
  54. position:absolute;
  55. top:0;
  56. right:0;
  57. }
  58. div.warning {
  59. color: #840;
  60. background: #fe6;
  61. border-color: #ed5;
  62. }
  63. div.error {
  64. color: #fff;
  65. background: #e63;
  66. border-color: #d52;
  67. }
  68. div.error p.error {
  69. color: #333;
  70. }
  71. div.status {
  72. color: #360;
  73. background: #cf8;
  74. border-color: #be7;
  75. }
  76. /**
  77. * VIEW
  78. */
  79. div.changed {
  80. background-color: #FFF98E;
  81. }
  82. .views-display .tab-section .inside .defaulted {
  83. color: #4C4C4C;
  84. background-color: #E4E4E4;
  85. font-style: italic;
  86. /* font-weight:bold;*/
  87. }
  88. .views-display .tab-section .inside .defaulted a {
  89. font-style: italic;
  90. }