Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / navigation / tabs / tabs.css
1 /**
2  * @file
3  * Visual styles for tabs.
4  */
5
6 .layout-tabs {
7   background-color: #79bd8f;
8 }
9 .tabs.primary {
10   display: flex;
11   list-style: none;
12   margin: 0 0 0.5em;
13   padding: 0;
14 }
15 .tabs .tab {
16   margin: 0;
17   background-color: #e6eee0;
18 }
19 .tabs .tab.is-active {
20   background-color: #fff;
21 }
22 .tabs a {
23   display: block;
24   padding: 0.75rem 1rem;
25   background-color: inherit;
26   color: inherit;
27   text-decoration: none;
28 }
29 .tabs a.is-active {
30   background-color: inherit;
31 }
32 .tabs a:focus,
33 .tabs a:hover {
34   background-color: #fff;
35 }