views-admin.bartik.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /**
  2. * The .bartik.css file is intended to contain styles that override declarations
  3. * in the Bartik theme.
  4. */
  5. /* @group Lists */
  6. .views-display-top .secondary .action-list {
  7. padding-left: 0; /* LTR */
  8. }
  9. /* @end */
  10. /* @group Attachment details tabs
  11. *
  12. * The tabs that switch between sections
  13. */
  14. .views-displays .region-content .secondary,
  15. .views-displays .region-content .secondary {
  16. padding-bottom: 0;
  17. padding-left: 0;
  18. }
  19. .views-displays .secondary a {
  20. font-size: smaller;
  21. }
  22. .views-displays .secondary > li a {
  23. -moz-border-radius: 5px;
  24. -webkit-border-radius: 5px;
  25. border-radius: 5px;
  26. }
  27. .views-displays .secondary > li.open a {
  28. -moz-border-radius: 5px 5px 0 0;
  29. -webkit-border-bottom-left-radius: 0;
  30. -webkit-border-bottom-right-radius: 0;
  31. -webkit-border-top-left-radius: 5px;
  32. -webkit-border-top-right-radius: 5px;
  33. border-radius: 5px 5px 0 0;
  34. }
  35. .views-displays .secondary .open > a:hover {
  36. color: #0071b3;
  37. }
  38. .views-displays .secondary input.form-submit {
  39. font-size: smaller;
  40. }
  41. /* @end */
  42. /* @group Modal dialog box
  43. *
  44. * The contents of the popup dialog on the views edit form.
  45. */
  46. .views-filterable-options .even .form-type-checkbox {
  47. background-color: #f9f9f9;
  48. }
  49. .views-ui-dialog .ui-dialog-titlebar-close,
  50. .views-ui-dialog #views-ajax-title,
  51. .views-ui-dialog .views-override,
  52. .views-ui-dialog .form-buttons {
  53. background-color: #f6f6f6;
  54. }
  55. .views-ui-dialog a {
  56. color: #0071b3;
  57. }
  58. .views-ui-dialog a:hover,
  59. .views-ui-dialog a:focus {
  60. color: #018fe2;
  61. }
  62. /* @end */
  63. /* @group CTools */
  64. /* @group Buttons */
  65. .ctools-button-processed {
  66. background-image: -moz-linear-gradient(
  67. -90deg,
  68. #fff 0px,
  69. #f9f9f9 100%
  70. );
  71. background-image: -webkit-gradient(
  72. linear,
  73. left top,
  74. left bottom,
  75. color-stop(0.0, rgba(255, 255, 255, 1.0)),
  76. color-stop(1.0, rgba(249, 249, 249, 1.0))
  77. );
  78. background-image: -webkit-linear-gradient(
  79. -90deg,
  80. #fff 0px,
  81. #f9f9f9 100%
  82. );
  83. background-image: linear-gradient(
  84. -90deg,
  85. #fff 0px,
  86. #f9f9f9 100%
  87. );
  88. -moz-border-radius: 5px;
  89. -webkit-border-radius: 5px;
  90. border-radius: 5px;
  91. padding-bottom: 1px;
  92. padding-top: 1px;
  93. }
  94. .ctools-button-processed:hover {
  95. background-image: -moz-linear-gradient(
  96. -90deg,
  97. #fff 0px,
  98. #f1f1f1 100%
  99. );
  100. background-image: -webkit-gradient(
  101. linear,
  102. left top,
  103. left bottom,
  104. color-stop(0.0, rgba(255, 255, 255, 1.0)),
  105. color-stop(1.0, rgba(241, 241, 241, 1.0))
  106. );
  107. background-image: -webkit-linear-gradient(
  108. -90deg,
  109. #fff 0px,
  110. #f1f1f1 100%
  111. );
  112. background-image: linear-gradient(
  113. -90deg,
  114. #fff 0px,
  115. #f1f1f1 100%
  116. );
  117. }
  118. .ctools-button-processed li a,
  119. .views-ui-display-tab-actions .ctools-button-processed input {
  120. padding-left: 9px;
  121. padding-right: 9px;
  122. }
  123. .ctools-content ul.actions {
  124. padding-bottom: 0;
  125. }
  126. .ctools-dropbutton-processed.open:hover {
  127. background-image: -moz-linear-gradient(
  128. -90deg,
  129. #fff 0px,
  130. #f9f9f9 100%
  131. );
  132. background-image: -webkit-gradient(
  133. linear,
  134. left top,
  135. left bottom,
  136. color-stop(0.0, rgba(255, 255, 255, 1.0)),
  137. color-stop(1.0, rgba(249, 249, 249, 1.0))
  138. );
  139. background-image: -webkit-linear-gradient(
  140. -90deg,
  141. #fff 0px,
  142. #f9f9f9 100%
  143. );
  144. background-image: linear-gradient(
  145. -90deg,
  146. #fff 0px,
  147. #f9f9f9 100%
  148. );
  149. }
  150. .ctools-dropbutton-processed.open {
  151. -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  152. -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  153. box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  154. }
  155. .ctools-twisty {
  156. top: 0.6667em;
  157. }
  158. .ctools-dropbutton-processed.open .ctools-twisty {
  159. top: 0.3333em;
  160. }
  161. .ctools-dropbutton-processed li a,
  162. .views-ui-display-tab-actions .ctools-dropbutton-processed input {
  163. padding-right: 7px;
  164. }
  165. .views-ui-display-tab-actions .ctools-button-processed input.form-submit {
  166. margin-right: 0;
  167. margin-top: 0;
  168. }
  169. /* @end */
  170. /* @group Collapsible */
  171. .ctools-toggle {
  172. margin-top: 0.9em;
  173. }
  174. .ctools-toggle.ctools-toggle-collapsed {
  175. margin-top: 0.72em;
  176. }
  177. .views-display-column > .ctools-toggle {
  178. margin-top: 14px;
  179. }
  180. .views-display-column > .ctools-toggle.ctools-toggle-collapsed {
  181. margin-top: 12px;
  182. }
  183. .views-ui-display-tab-actions .ctools-button input {
  184. color: #0071b3;
  185. }
  186. .views-ui-display-tab-actions .ctools-button input:hover,
  187. .views-ui-display-tab-actions .ctools-button input:focus {
  188. color: #018fe2;
  189. }
  190. /* @end */
  191. /* @end */