You are here

features.css in Features 7

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

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

/**
 * 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;
  padding:0px;
  margin: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;
  padding:5px 5px 4px 4px;
  border-left:1px solid #eee;
  border-bottom:1px solid #eee;
  color: #000;
  cursor:pointer;
}

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

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

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

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

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 {
  overflow-x:hidden;
  overflow-y:auto;
  height:20em;
  }

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 {
  white-space:nowrap;
  margin-right:5px;
  padding:2px 5px;
  background:#eee;
  -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;
}

div.conflicts span.admin-disabled {
  color: #955;
}

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 {
  color:#fff;
  background:#666;
}

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

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

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 {
  color:#68a;
  background:#def;
}

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

/**
 * 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 {
  width:50%;
  font-family:'Andale Mono',monospace;
}

File

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