Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / navigation / tabs / tabs.css
diff --git a/web/core/profiles/demo_umami/themes/umami/css/components/navigation/tabs/tabs.css b/web/core/profiles/demo_umami/themes/umami/css/components/navigation/tabs/tabs.css
new file mode 100644 (file)
index 0000000..79cc119
--- /dev/null
@@ -0,0 +1,35 @@
+/**
+ * @file
+ * Visual styles for tabs.
+ */
+
+.layout-tabs {
+  background-color: #79bd8f;
+}
+.tabs.primary {
+  display: flex;
+  list-style: none;
+  margin: 0 0 0.5em;
+  padding: 0;
+}
+.tabs .tab {
+  margin: 0;
+  background-color: #e6eee0;
+}
+.tabs .tab.is-active {
+  background-color: #fff;
+}
+.tabs a {
+  display: block;
+  padding: 0.75rem 1rem;
+  background-color: inherit;
+  color: inherit;
+  text-decoration: none;
+}
+.tabs a.is-active {
+  background-color: inherit;
+}
+.tabs a:focus,
+.tabs a:hover {
+  background-color: #fff;
+}