style.css 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. #flash > div {
  2. padding: 8px 35px 8px 14px;
  3. margin-bottom: 20px;
  4. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  5. background-color: #fcf8e3;
  6. border: 1px solid #fbeed5;
  7. -webkit-border-radius: 4px;
  8. -moz-border-radius: 4px;
  9. border-radius: 4px;
  10. color: #c09853;
  11. }
  12. #flash > .ok {
  13. color: #468847;
  14. background-color: #dff0d8;
  15. border-color: #d6e9c6;
  16. }
  17. #flash > .error {
  18. color: #b94a48;
  19. background-color: #f2dede;
  20. border-color: #eed3d7;
  21. }
  22. #flash > .info {
  23. color: #3a87ad;
  24. background-color: #d9edf7;
  25. border-color: #bce8f1;
  26. }
  27. /* Footer styling */
  28. .footer {
  29. margin-top: 2em;
  30. padding: 0.5em 0 36px;
  31. border-top: 1px solid #e5e5e5;
  32. }
  33. .footer p {
  34. margin-bottom: 0;
  35. color: #555;
  36. }
  37. /* Wrapper for page content to push down footer */
  38. #wrap {
  39. min-height: 100%;
  40. height: auto !important;
  41. height: 100%;
  42. /* Negative indent footer by it's height */
  43. margin: 0 auto -60px;
  44. }
  45. /* Lastly, apply responsive CSS fixes as necessary */
  46. @media (max-width: 767px) {
  47. #footer {
  48. margin-left: -20px;
  49. margin-right: -20px;
  50. padding-left: 20px;
  51. padding-right: 20px;
  52. }
  53. }
  54. /* vertical align icons in legend nodes */
  55. legend > i {
  56. vertical-align: baseline !important;
  57. }
  58. div.pod-toolbar {
  59. visibility: hidden;
  60. position: absolute;
  61. right: 1.2em;
  62. top: 0;
  63. }
  64. .pod-toolbar-parent {
  65. border-bottom: 1px dotted #CCC;
  66. }
  67. .pod-toolbar-parent:Hover {
  68. background-color: #EFEFEF;
  69. }
  70. .pod-toolbar-parent:Hover > div.pod-toolbar {
  71. visibility: visible;
  72. }
  73. .pod-status {
  74. position: absolute;
  75. width: 1.2em;
  76. text-align: center;
  77. right: 0;
  78. top: 0;
  79. }
  80. .pod-item-nb-sup-block {
  81. color: #3a87ad;
  82. font-weight: bold;
  83. }
  84. h3:Hover div.pod-toolbar {
  85. visibility: visible;
  86. }
  87. .pod-blue {color: #3a87ad !important; }
  88. .pod-red {color: #F00 !important; }
  89. .pod-grey {color: #999 !important; }
  90. .pod-dark-grey {color: #333333 !important; }
  91. body { padding-top: 60px; }
  92. @media screen and (max-width: 768px) {
  93. body { padding-top: 0px; }
  94. }
  95. /*
  96. ##########################
  97. ##
  98. ## HERE COMES THE FULLSCREEN CODE FOR RICH TEXT EDITING
  99. ##
  100. ## FIXME - D.A. - 2013-11-13 - This code is testing, to remove later
  101. */
  102. .full-size-overlay {
  103. height:100%;
  104. width:100%;
  105. position:fixed;
  106. left:0;
  107. top:0;
  108. z-index:2001 !important;
  109. background-color:white;
  110. padding: 0.5em 0.5em 0.5em 0.5em;
  111. filter: alpha(opacity=90); /* internet explorer */
  112. -khtml-opacity: 0.9; /* khtml, old safari */
  113. -moz-opacity: 0.9; /* mozilla, netscape */
  114. opacity: 0.9; /* fx, safari, opera */
  115. }
  116. .full-size-overlay-inner {
  117. margin: 0.5em 1em 0.5em 0em;
  118. overflow: auto;
  119. max-height: 90%;
  120. }
  121. tr:Hover td div.pod-toolbar {
  122. visibility: hidden;
  123. }
  124. tr:Hover td div.pod-toolbar {
  125. visibility: visible;
  126. }
  127. .pod-status-grey-light { background-color: #DDD; }
  128. .pod-status-grey-middle { background-color: #BBB; }
  129. .pod-status-grey-dark { background-color: #AAA; }
  130. .pod-status-active { background-color: #FEE; }
  131. .pod-rich-text-zone {
  132. overflow:auto;
  133. min-height:3em;
  134. max-height: 10%;
  135. border: 1px solid #CCC;
  136. padding: 0.5em;
  137. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  138. border-radius: 4px;
  139. background-color: white;
  140. }
  141. .pod-input-like-shadow {
  142. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  143. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  144. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  145. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  146. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  147. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  148. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  149. transition: border linear 0.2s, box-shadow linear 0.2s;
  150. }
  151. .pod-input-like-shadow:focus {
  152. border-color: rgba(82, 168, 236, 0.8);
  153. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  154. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  155. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  156. outline: 0;
  157. outline: thin dotted \9;
  158. }
  159. .navbar .nav > li > a.pod-do-not-display { display: none; }
  160. /* SEARCH RESULTS SCREEN */
  161. div.search-result-item > h5 {
  162. margin-bottom: 0;
  163. }