]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/styles/ceph-custom/_basics.scss
import ceph quincy 17.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / styles / ceph-custom / _basics.scss
index 9ff41c6242351c931a9f3c4329d4d57e6683df72..7a618f704fc1ee4ec7af0ead9f05b93e2cc0c8cb 100644 (file)
@@ -102,3 +102,42 @@ mark {
 .border-success {
   border-left: 4px solid vv.$success;
 }
+
+.vertical-line {
+  border-left: 1px solid vv.$gray-400;
+}
+
+.accordion {
+  .card {
+    border: 0;
+  }
+
+  .card-header {
+    border: 0;
+    border-bottom: 3px solid vv.$white;
+    padding-left: 0;
+
+    .btn:focus,
+    .btn.focus {
+      box-shadow: none;
+    }
+
+    button.dropdown-toggle {
+      position: relative;
+
+      &::after {
+        border: 0;
+        content: '\f054';
+        font-family: 'ForkAwesome';
+        font-size: 1rem;
+        position: absolute;
+        right: 20px;
+        transition: transform 0.3s ease-in-out;
+      }
+
+      &[aria-expanded='true']::after {
+        transform: rotate(90deg);
+      }
+    }
+  }
+}