views-admin.rubik.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /**
  2. * @file
  3. * Custom styles for making Views 3 play nice with Rubik.
  4. */
  5. .views-displays .secondary .action-list input.form-submit {
  6. -webkit-box-shadow: none;
  7. -moz-box-shadow: none;
  8. box-shadow: none;
  9. -webkit-border-radius: 0;
  10. -moz-border-radius: 0;
  11. border-radius: 0;
  12. }
  13. .views-displays .secondary .open > a:hover {
  14. color: #59A;
  15. }
  16. .views-ui-display-tab-actions .ctools-button-processed li a,
  17. .views-ui-display-tab-actions .ctools-button-processed input {
  18. border: none;
  19. -webkit-box-shadow: none;
  20. -moz-box-shadow: none;
  21. box-shadow: none;
  22. }
  23. #views-ui-edit-form div#edit-actions.form-actions.form-wrapper {
  24. float: right;
  25. }
  26. #views-ui-edit-form div h1.unit-title.clearfix {
  27. clear: both;
  28. float: left;
  29. }
  30. #views-ui-edit-form .tabs {
  31. float: left;
  32. background-color: transparent;
  33. }
  34. #views-ui-edit-form .tabs li {
  35. display: block;
  36. float: left;
  37. }
  38. #views-ui-edit-form .views-display-top .tabs li li{
  39. float: none;
  40. }
  41. #views-ui-edit-form .views-display-top ul.secondary.tabs {
  42. overflow: inherit;
  43. padding-bottom: 0;
  44. padding-left: 0;
  45. }
  46. #views-ui-edit-form .views-display-top ul.secondary.tabs li {
  47. margin-bottom: 0;
  48. margin: 0 10px 0 0;
  49. }
  50. #views-ui-edit-form .views-display-top ul.secondary.tabs li a.active {
  51. border-color: #666;
  52. }
  53. #views-ui-edit-form .pager {
  54. margin: 0;
  55. height: auto;
  56. }
  57. .views-displays {
  58. clear: both;
  59. }
  60. .views-display-setting .label {
  61. margin-right: 3pt; /* LTR */
  62. }
  63. .views-admin a:hover {
  64. text-decoration: none;
  65. }
  66. .views-display-setting .views-ajax-link {
  67. margin-left: 0.2083em;
  68. margin-right: 0.2083em;
  69. }
  70. .views-ui-display-tab-bucket > h3,
  71. .views-ui-display-tab-bucket > .views-display-setting {
  72. padding: 2px 6px 4px;
  73. }
  74. /* Hide 'remove' checkboxes. This might be scoped too widely. */
  75. .form-type-checkbox.remove {
  76. display: none;
  77. }
  78. .views-ui-display-tab-bucket .views-display-setting {
  79. color: #666666;
  80. font-size: 12px;
  81. padding-bottom: 2px;
  82. }
  83. .views-ui-display-tab-bucket h1,
  84. .views-ui-display-tab-bucket h2,
  85. .views-ui-display-tab-bucket h3,
  86. .views-ui-display-tab-bucket h4,
  87. .views-ui-display-tab-bucket h5 {
  88. margin-bottom: 0;
  89. margin-top: 0;
  90. }
  91. #edit-display-settings-main {
  92. margin-top: 15px;
  93. }
  94. input.form-autocomplete,
  95. input.form-text,
  96. input.form-file,
  97. textarea.form-textarea,
  98. select.form-select {
  99. padding: 2px;
  100. border: 1px solid #ccc;
  101. border-top-color: #999;
  102. background: #fff;
  103. color: #333;
  104. }
  105. input.form-text:focus,
  106. input.form-file:focus,
  107. textarea.form-textarea:focus,
  108. select.form-select:focus {
  109. color: #000;
  110. border-color: #ace;
  111. }
  112. #views-ui-preview-form .form-type-textfield {
  113. margin-top: 2px;
  114. }
  115. #views-ui-preview-form {
  116. border-width: 1px;
  117. border-style: solid;
  118. border-color: #DDD;
  119. padding: 9px;
  120. }
  121. #views-ui-preview-form .form-item {
  122. border: none;
  123. padding: 0;
  124. }
  125. #views-ui-preview-form .form-type-textfield .description {
  126. white-space: normal;
  127. margin-bottom: 0;
  128. }
  129. #views-ui-preview-form .form-type-textfield input {
  130. width: 180px;
  131. }
  132. #views-ui-preview-form .form-type-textfield label {
  133. height: auto;
  134. }
  135. #edit-display-preview-controls .form-type-textfield label {
  136. display: inline-block;
  137. font-weight: normal;
  138. height: inherit;
  139. margin-right: 0.75em;
  140. }
  141. #edit-display-preview-controls > .form-type-textfield {
  142. margin-top: 6px;
  143. }
  144. #edit-display-preview-controls .arguments-preview,
  145. #edit-display-preview-controls .form-type-textfield {
  146. margin-left: 14px;
  147. }
  148. #edit-display-preview-controls > div,
  149. #edit-display-preview-controls > input {
  150. float: left;
  151. }
  152. #edit-display-preview-controls .form-item {
  153. margin-bottom: 0;
  154. padding-bottom: 0;
  155. padding-top: 0;
  156. }
  157. /* Labels are outside the .form-item wrapper. */
  158. .views-exposed-form .views-exposed-widget label {
  159. margin: 0;
  160. padding: 0;
  161. color: #999;
  162. font-weight: bold;
  163. font-size: 10px;
  164. text-transform: uppercase;
  165. }
  166. .views-exposed-form .views-exposed-widget .form-item {
  167. border: 0;
  168. padding: 0;
  169. }
  170. /* Collapsible within dependent. */
  171. #edit-options .collapsible .collapsible,
  172. #edit-options .collapsible {
  173. float: none;
  174. }
  175. .dependent-options,
  176. .dependent-options.form-item,
  177. .form-item-options-expose-required,
  178. .form-item-options-expose-label {
  179. margin-left: 1.5em;
  180. }
  181. #views-ajax-popup {
  182. border: 0;
  183. }
  184. .views-ui-dialog .ui-dialog-titlebar {
  185. border: none;
  186. }
  187. .views-ui-dialog .ui-dialog-titlebar-close {
  188. -webkit-border-radius: 5px;
  189. -moz-border-radius: 5px;
  190. border-radius: 5px;
  191. border: 0;
  192. background: #444 url(../images/buttons.png) -4000px 50% no-repeat;
  193. display: block;
  194. position: absolute;
  195. height: 20px;
  196. width: 20px;
  197. margin: 5px;
  198. padding: 0;
  199. right: 0;
  200. left: auto;
  201. }
  202. .views-ui-dialog #views-ajax-title {
  203. color:#fff;
  204. font-size: 100%;
  205. font-weight: normal;
  206. text-transform: uppercase;
  207. background: url(../images/bleeds.png) 0 -30px repeat-x;
  208. border: 0;
  209. -webkit-border-radius: 6px 6px 0 0;
  210. -moz-border-radius: 6px 6px 0 0;
  211. border-radius: 6px 6px 0 0;
  212. padding: 5px 10px;
  213. margin-bottom: 10px;
  214. }
  215. .views-ui-dialog .views-override {
  216. background: transparent;
  217. padding: 0 0 8px;
  218. }
  219. .views-ui-dialog #views-ajax-body {
  220. margin: 0 20px;
  221. }
  222. .views-ui-dialog .scroll {
  223. border: none;
  224. padding: 8px 10px 8px 0;
  225. }
  226. /* Force the Views UI operations table cell to have relative positioning. */
  227. td.views-ui-operations {
  228. position: relative;
  229. }
  230. /* Form buttons. */
  231. .views-ui-dialog .form-buttons {
  232. background: #EEE;
  233. border: 1px solid #DDD;
  234. padding: 9px;
  235. margin-top: 10px;
  236. }
  237. /* Filtering options. */
  238. .views-filterable-options .form-type-checkbox {
  239. padding: 5px 8px!important;
  240. }