Project

General

Profile

1
@media only screen and (max-width: 959px) {
2
  .uk-subnav-pill, .uk-tab {
3
    flex-wrap: nowrap;
4
    overflow-x: auto;
5
  }
6
}
7

    
8
.uk-subnav-pill > * > a, .uk-subnav-pill > * > span > a {
9
  color: currentColor !important;
10
  opacity: 0.5;
11
  border-radius: 40px !important;
12
  border: 1px solid currentColor !important;
13
  padding: 6px 18px !important;
14
  line-height: 18px;
15
}
16

    
17
.uk-subnav-pill > * > :first-child {
18
  text-transform: none;
19
  font-size: var(--sidebar-font-size);
20
  color: var(--text-color);
21
}
22

    
23
.uk-subnav-pill > li {
24
  margin-bottom: 10px;
25
}
26

    
27
.uk-subnav-pill > li > a:hover, .uk-subnav-pill > li > span > a:hover {
28
  border-color: var(--secondary-color);
29
  color: var(--secondary-color) !important;
30
  background-color: var(--contrast-color);
31
  opacity: 1;
32
}
33

    
34
.uk-subnav-pill > li.uk-active > a, .uk-subnav-pill > li.uk-active > span > a {
35
  opacity: 1;
36
  border-color: var(--primary-color) !important;
37
  color: var(--contrast-color) !important;
38
  background-color: var(--primary-color);
39
  font-weight: bold;
40
}
41

    
42
.uk-tab > li > a {
43
  color: rgb(var(--text-color-rgb), 0.5) !important;
44
  font-family: "Open Sans", sans-serif !important;
45
  text-transform: capitalize;
46
}
47

    
48
.uk-tab > li > * {
49
  font-size: var(--small-font-size);
50
}
51

    
52
.uk-tab > li:hover > a {
53
  color: var(--secondary-color) !important;
54
}
55

    
56
.uk-tab > li.uk-active  > a {
57
  color: var(--primary-color) !important;
58
  font-weight: 700;
59
}
60

    
61
.customTabs.uk-tab > li > a, .customTabs.uk-tab > li.uk-active > a,.customTabs.uk-tab > li > a:focus, .customTabs.uk-tab > li > a:hover {
62
  border: 0 transparent !important;
63
}
64

    
65
.uk-tab.customTabs::before {
66
  border-bottom: none !important;
67
}
68

    
69
.customTabs.uk-tab.admin > li.uk-active > a .title {
70
  border-bottom: 3px solid var(--portal-main-color);
71
  margin-left: 3px;
72
}
73

    
74
.uk-subnav-pill.subCategoriesTabs.admin > li.uk-active > a{
75
  border: 1px solid var(--primary-color);
76
  background-color: var(--primary-color);
77
}
78

    
79
.uk-subnav[visibility=true], .uk-tab[visibility=true] {
80
  margin-left: -50px;
81
}
82

    
83
.uk-subnav[visibility=true] > li:not(:first-child):not(:last-child) > :first-child,
84
.uk-tab[visibility=true] > li:not(:first-child):not(:last-child) {
85
  padding-left: 0;
86
}
(9-9/11)