]> git.proxmox.com Git - proxmox-widget-toolkit.git/blobdiff - src/css/ext6-pmx.css
css: increase padding for Debian and Proxmox symbol logos
[proxmox-widget-toolkit.git] / src / css / ext6-pmx.css
index 339bcfefe2a13a906500830ee7c29d643b2cd2b2..843f762516a897d8d94711f0cf5bf04c34659ee3 100644 (file)
     text-align: center;
 }
 
+.proxmox-disabled-row, .proxmox-disabled-row td {
+    /*color: #a0a0a0;*/
+    color: #666665;
+}
+
 .proxmox-invalid-row {
     background-color: #f3d6d7;
 }
     color: #FF6C59;
 }
 
+.info-blue {
+    color: #3892d4;
+}
+
 /* reduce chart legend space usage to something more sane */
 .x-legend-item {
        padding: 0.4em 0.8em 0.4em 1.8em;
@@ -75,7 +84,10 @@ div.right-aligned {
     font-size: 14px;
 }
 
-.fa {
+.x-btn-icon-el-default-toolbar-small {
+    font-size: 14px;
+}
+.x-btn-icon-el-default-small {
     font-size: 14px;
 }
 
@@ -84,3 +96,129 @@ div.right-aligned {
     font-size: 14px;
     margin-top: 2px;
 }
+
+.pmx-icon {
+    height: 16px;
+    background-position: bottom;
+    vertical-align: bottom;
+    padding: 0;
+}
+
+.pmx-itype-icon-memory,
+.pmx-itype-icon-processor,
+.pmx-itype-icon /* NOTE: use this one instead of adding new specific ones! */
+{
+    background-repeat: no-repeat;
+    background-position:3px center;
+    padding-left: 20px;
+}
+
+.pmx-itype-icon-memory {
+    background-image:url(../images/icon-ram.png);
+}
+
+.pmx-itype-icon-processor {
+    background-image:url(../images/icon-cpu.png);
+}
+
+.pmx-itype-icon-debian-swirl {
+    padding-left: 22px;
+    background-size: 16px;
+    background-image:url(../images/debian-swirl-openlogo.svg);
+}
+.pmx-itype-icon-proxmox-x {
+    padding-left: 22px;
+    background-size: 16px;
+    background-image:url(../images/proxmox-symbol-x.svg);
+}
+
+/* change font for config panel back to fontawesome */
+.x-treelist-item-expanded > * > * > .x-treelist-item-expander::after,
+.x-treelist-item-expander::after {
+    font: 16px/1 FontAwesome;
+}
+
+.x-treelist-pve-nav {
+    background-color: #f5f5f5;
+}
+
+/* fix padding for legend in header */
+.x-legend-inner {
+    padding: 0;
+}
+
+.proxmox-apt-repos .x-grid-group-hd {
+    color: #000000;
+    background-color: #f5f5f5;
+}
+.proxmox-apt-repos .x-grid-group-title {
+    color: #333;
+}
+
+/* rules for the markdown content, prefix with the .pmx-md class */
+.pmx-md {
+    font-size: 1.0em;
+    line-height: 1.25em;
+}
+.pmx-md p {
+    margin-top: 0.75em;
+    margin-bottom: 0.75em;
+}
+.pmx-md :is(h1, h2, h3, h4, h5, h6) {
+    margin-top: 0.9em;
+    margin-bottom: 0.75em;
+}
+.pmx-md h1 { font-size: 175%; }
+.pmx-md h2 { font-size: 150%; }
+.pmx-md h3 { font-size: 125%; }
+.pmx-md h4 { font-size: 110%; }
+.pmx-md h5 { font-size: 100%; }
+.pmx-md h6 { font-size: 100%; }
+
+.pmx-md code {
+    white-space: pre;
+    background-color: #f5f5f5;
+    padding: 1px;
+}
+.pmx-md pre code {
+    display: inline-block;
+    padding: 5px;
+    border-left: 3px solid #e0e0e0;
+}
+.pmx-md strong {
+    font-weight: bold;
+}
+.pmx-md blockquote {
+    border-left: 1px solid #666666;
+    padding-left: 4px;
+    margin: 10px 2ch;
+}
+/* markdown tables */
+.pmx-md table {
+    border-spacing: 0;
+    border-collapse: collapse;
+}
+.pmx-md td, .pmx-md th {
+    padding: 5px;
+}
+.pmx-md td[align="center"] {
+    text-align: center;
+}
+.pmx-md td[align="right"] {
+    text-align: right;
+}
+.pmx-md tbody td {
+    border-bottom: 1px solid #e0e0e0;
+}
+.pmx-md tbody tr:nth-of-type(even) {
+    background-color: #f5f5f5;
+}
+.pmx-md tbody tr:last-of-type td {
+    border-bottom: 1px solid #666666;
+}
+.pmx-md tbody tr:hover td {
+    background-color: #e0e0e0;
+}
+/* markdown tables end */
+
+/* markdown content end */