You are here

features.css in Features 6

Same filename and directory in other branches
  1. 7.2 features.css
  2. 7 features.css
/**
 * Features packages.
 */
div.features-form-links {
  float: left;
  width: 20%;
}

div.features-form-content {
  float: right;
  width: 80%;
}

/**
 * Package links.
 */
div.features-form-links ul#features-form-links,
div.features-form-links ul#features-form-links li,
div.features-form-links ul#features-form-links li a {
  display: block;
  float: none;
  margin: 0px;
  padding: 0px;
}

div.features-form-links ul#features-form-links {
  margin: 0px 0px 10px;
}

div.features-form-links ul#features-form-links li a {
  background: #f8f8f8;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  padding: 5px 5px 4px 4px;
}

div.features-form-links ul#features-form-links li a.features-package-active {
  background: #fff;
  border: 1px solid #ccc;
  border-right: 0px;
  margin-right: -1px;
  padding: 4px 5px 4px 4px;
}

/* Packages */
div.features-form-package {
  background: #fff;
  border: 1px solid #ccc;
  display: none;
  margin: 0px 0px 20px;
  padding: 10px;
}

div.features-package-active {
  display: block;
}

/**
 * Features management form (admin/build/features).
 */
div.features-empty {
  color: #999;
  font-size: 1.5em;
  margin: 15px 0px;
  text-align: center;
}

form div.buttons {
  text-align: center;
}

table.features .admin-loading,
table.features tr.disabled {
  color: #999;
}

table.features a.configure {
  float:right;
  font-style: italic;
}
table.features div.feature {
  float:left;
  width: 85%;
}
table.features div.feature strong {
  font-size: 13px;
}
table.features div.feature div.description {
  font-size:11px;
  margin: 0px;
}

table.features-manage td.name {
  width: 80%;
}
table.features-manage td.sign {
  width: 20%;
}

table.features-admin td.name {
  width: 60%;
}
table.features-admin td.sign {
  width: 20%;
}
table.features-admin td.state {
  width: 10%;
}
table.features-admin td.actions {
  width: 10%;
}

table.features td.sign {
  font-size: 9px;
  line-height: 15px;
  white-space: nowrap;
}

table.features td.sign * {
  margin: 0px;
}

table.features .admin-check,
table.features .admin-default,
table.features .admin-overridden,
table.features .admin-rebuilding,
table.features .admin-needs-review {
  display: none;
}

/**
 * Feature export form (admin/build/features/export).
 */
form.features-export-form table td {
  width: 50%;
}
form.features-export-form table td {
  vertical-align: top;
}
form.features-export-form table div.description {
  white-space: normal;
}

table.features-export div.form-item {
  white-space: normal;
}
table.features-export select {
  width: 90%;
}
table.features-export td {
  vertical-align: top;
}

form.features-export-form div.features-select {
  display: none;
}

form.features-export-form div.form-checkboxes {
  height: 20em;
  overflow-x: hidden;
  overflow-y: auto;
}

form.features-export-form div#edit-components-wrapper,
form.features-export-form div.features-select {
  padding-right: 20px;
}

/**
 * Feature component display (admin/build/features/%feature).
 */
div.features-components div.column {
  float: left;
  width: 50%;
}

div.features-components div.column div.info {
  padding-right: 20px;
}
div.features-components div.column div.components {
  padding-left: 20px;
}

h3.features-download,
div.features-comparison h3,
div.features-components h3 {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: -1px;
  margin: 15px 0px;
}

h3.features-download {
  text-align: center;
}

div.features-components div.description {
  font-size: 11px;
  margin: 15px 0px;
}

div.features-components table td {
  font-size: 11px;
}
div.features-components table td.component {
  padding-left: 20px;
}

/**
 * Features component lists.
 */
span.features-component-key {
  font-size: 11px;
}

a.admin-update,
a.features-storage,
span.features-storage,
span.features-component-list span {
  background: #eee;
  margin-right: 5px;
  padding: 2px 5px;
  white-space: nowrap;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

div.features-key span.admin-conflict,
span.features-component-list span.features-conflict {
  background-color: #c30;
  color: #fff;
}

a.admin-update {
  background: transparent;
}

/* These pseudo selectors are necessary for themes like Garland. */
a.admin-overridden:link,
a.admin-overridden:visited,
span.admin-overridden {
  background: #666;
  color: #fff;
}

a.admin-needs-review:link,
a.admin-needs-review:visited,
span.admin-needs-review {
  background: #fe6;
  color: #963;
}

a.admin-rebuilding:link,
a.admin-rebuilding:visited,
span.admin-rebuilding {
  background: #699;
  color: #fff;
}

a.admin-conflict:link,
a.admin-conflict:visited,
span.admin-conflict {
  color: #c30;
}

table.features-diff td.diff-addedline,
span.features-component-list .features-detected {
  background: #def;
  color: #68a;
}

table.features-diff td.diff-deletedline,
span.features-component-list .features-dependency {
  background: #f8f8f8;
  color: #999;
}

/**
 * Features diff.
 */
table.features-diff {
  font-size: 11px;
}

table.features-diff td {
  padding: 0px 5px;
}

table.features-diff td.diff-deletedline,
table.features-diff td.diff-addedline,
table.features-diff td.diff-context {
  font-family: 'Andale Mono', monospace;
  width: 50%;
}

File

features.css
View source
  1. /**
  2. * Features packages.
  3. */
  4. div.features-form-links {
  5. float: left;
  6. width: 20%;
  7. }
  8. div.features-form-content {
  9. float: right;
  10. width: 80%;
  11. }
  12. /**
  13. * Package links.
  14. */
  15. div.features-form-links ul#features-form-links,
  16. div.features-form-links ul#features-form-links li,
  17. div.features-form-links ul#features-form-links li a {
  18. display: block;
  19. float: none;
  20. margin: 0px;
  21. padding: 0px;
  22. }
  23. div.features-form-links ul#features-form-links {
  24. margin: 0px 0px 10px;
  25. }
  26. div.features-form-links ul#features-form-links li a {
  27. background: #f8f8f8;
  28. border-left: 1px solid #eee;
  29. border-bottom: 1px solid #eee;
  30. cursor: pointer;
  31. padding: 5px 5px 4px 4px;
  32. }
  33. div.features-form-links ul#features-form-links li a.features-package-active {
  34. background: #fff;
  35. border: 1px solid #ccc;
  36. border-right: 0px;
  37. margin-right: -1px;
  38. padding: 4px 5px 4px 4px;
  39. }
  40. /* Packages */
  41. div.features-form-package {
  42. background: #fff;
  43. border: 1px solid #ccc;
  44. display: none;
  45. margin: 0px 0px 20px;
  46. padding: 10px;
  47. }
  48. div.features-package-active {
  49. display: block;
  50. }
  51. /**
  52. * Features management form (admin/build/features).
  53. */
  54. div.features-empty {
  55. color: #999;
  56. font-size: 1.5em;
  57. margin: 15px 0px;
  58. text-align: center;
  59. }
  60. form div.buttons {
  61. text-align: center;
  62. }
  63. table.features .admin-loading,
  64. table.features tr.disabled {
  65. color: #999;
  66. }
  67. table.features a.configure {
  68. float:right;
  69. font-style: italic;
  70. }
  71. table.features div.feature {
  72. float:left;
  73. width: 85%;
  74. }
  75. table.features div.feature strong {
  76. font-size: 13px;
  77. }
  78. table.features div.feature div.description {
  79. font-size:11px;
  80. margin: 0px;
  81. }
  82. table.features-manage td.name {
  83. width: 80%;
  84. }
  85. table.features-manage td.sign {
  86. width: 20%;
  87. }
  88. table.features-admin td.name {
  89. width: 60%;
  90. }
  91. table.features-admin td.sign {
  92. width: 20%;
  93. }
  94. table.features-admin td.state {
  95. width: 10%;
  96. }
  97. table.features-admin td.actions {
  98. width: 10%;
  99. }
  100. table.features td.sign {
  101. font-size: 9px;
  102. line-height: 15px;
  103. white-space: nowrap;
  104. }
  105. table.features td.sign * {
  106. margin: 0px;
  107. }
  108. table.features .admin-check,
  109. table.features .admin-default,
  110. table.features .admin-overridden,
  111. table.features .admin-rebuilding,
  112. table.features .admin-needs-review {
  113. display: none;
  114. }
  115. /**
  116. * Feature export form (admin/build/features/export).
  117. */
  118. form.features-export-form table td {
  119. width: 50%;
  120. }
  121. form.features-export-form table td {
  122. vertical-align: top;
  123. }
  124. form.features-export-form table div.description {
  125. white-space: normal;
  126. }
  127. table.features-export div.form-item {
  128. white-space: normal;
  129. }
  130. table.features-export select {
  131. width: 90%;
  132. }
  133. table.features-export td {
  134. vertical-align: top;
  135. }
  136. form.features-export-form div.features-select {
  137. display: none;
  138. }
  139. form.features-export-form div.form-checkboxes {
  140. height: 20em;
  141. overflow-x: hidden;
  142. overflow-y: auto;
  143. }
  144. form.features-export-form div#edit-components-wrapper,
  145. form.features-export-form div.features-select {
  146. padding-right: 20px;
  147. }
  148. /**
  149. * Feature component display (admin/build/features/%feature).
  150. */
  151. div.features-components div.column {
  152. float: left;
  153. width: 50%;
  154. }
  155. div.features-components div.column div.info {
  156. padding-right: 20px;
  157. }
  158. div.features-components div.column div.components {
  159. padding-left: 20px;
  160. }
  161. h3.features-download,
  162. div.features-comparison h3,
  163. div.features-components h3 {
  164. font-size: 2em;
  165. font-weight: bold;
  166. letter-spacing: -1px;
  167. margin: 15px 0px;
  168. }
  169. h3.features-download {
  170. text-align: center;
  171. }
  172. div.features-components div.description {
  173. font-size: 11px;
  174. margin: 15px 0px;
  175. }
  176. div.features-components table td {
  177. font-size: 11px;
  178. }
  179. div.features-components table td.component {
  180. padding-left: 20px;
  181. }
  182. /**
  183. * Features component lists.
  184. */
  185. span.features-component-key {
  186. font-size: 11px;
  187. }
  188. a.admin-update,
  189. a.features-storage,
  190. span.features-storage,
  191. span.features-component-list span {
  192. background: #eee;
  193. margin-right: 5px;
  194. padding: 2px 5px;
  195. white-space: nowrap;
  196. -moz-border-radius: 5px;
  197. -webkit-border-radius: 5px;
  198. }
  199. div.features-key span.admin-conflict,
  200. span.features-component-list span.features-conflict {
  201. background-color: #c30;
  202. color: #fff;
  203. }
  204. a.admin-update {
  205. background: transparent;
  206. }
  207. /* These pseudo selectors are necessary for themes like Garland. */
  208. a.admin-overridden:link,
  209. a.admin-overridden:visited,
  210. span.admin-overridden {
  211. background: #666;
  212. color: #fff;
  213. }
  214. a.admin-needs-review:link,
  215. a.admin-needs-review:visited,
  216. span.admin-needs-review {
  217. background: #fe6;
  218. color: #963;
  219. }
  220. a.admin-rebuilding:link,
  221. a.admin-rebuilding:visited,
  222. span.admin-rebuilding {
  223. background: #699;
  224. color: #fff;
  225. }
  226. a.admin-conflict:link,
  227. a.admin-conflict:visited,
  228. span.admin-conflict {
  229. color: #c30;
  230. }
  231. table.features-diff td.diff-addedline,
  232. span.features-component-list .features-detected {
  233. background: #def;
  234. color: #68a;
  235. }
  236. table.features-diff td.diff-deletedline,
  237. span.features-component-list .features-dependency {
  238. background: #f8f8f8;
  239. color: #999;
  240. }
  241. /**
  242. * Features diff.
  243. */
  244. table.features-diff {
  245. font-size: 11px;
  246. }
  247. table.features-diff td {
  248. padding: 0px 5px;
  249. }
  250. table.features-diff td.diff-deletedline,
  251. table.features-diff td.diff-addedline,
  252. table.features-diff td.diff-context {
  253. font-family: 'Andale Mono', monospace;
  254. width: 50%;
  255. }