Close #2050 Squashed commit of the following: commit 3bc6a409034989b914306e1c33da274730ca623e Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 20:58:09 2020 +0300 Change dashboard block confirm message commit d4d47c3557e2166ee04db25a71b782bfbfe3b865 Merge: e8865827fc43e2acAuthor: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 14:56:34 2020 +0300 Merge branch 'master' into feature/2050 commit e8865827879955b1ef62c9ff85798d07bfa4627d Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 13:46:10 2020 +0300 Rename classname commit 648151c54e493c63622e014cb9cd1cb450f25478 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 19:09:21 2020 +0300 Decrease arrow size commit 4feadab707c613d31225dfa9443a9a836db37ba1 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 18:27:41 2020 +0300 Rename button class commit c3919d8ae8d1431657ce61afad2c20e5806f279a Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 10:35:15 2020 +0300 Review changes: extract variables commit 0ac809584c391e41a1749a844bc1075e05a92345 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 10:13:57 2020 +0300 Display dashboard button on hover commit 1395287c2383e2248a2a5d39451403bd73141e55 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 21:24:04 2020 +0300 Do not hide button on option open commit 947f254b7aea26f289b66b66fac46dba11ea3952 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 21:20:19 2020 +0300 Add buttons for mobile screen commit df05697f87163a2b716d82653884e631f2fa6cf3 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 20:18:20 2020 +0300 Change dashboard button styles commit 16655f2d6b0d79d1fa027ec2310bb0268fffaf6a Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 20:04:28 2020 +0300 Change button styles, rename button options commit 1ac22e875d8b26c16830bf6edb85dadcc19ff287 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 19:30:16 2020 +0300 Review changes commit c590119875439d85927bdd334658e003bc1f0563 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 17:58:08 2020 +0300 Remove default query logs form values commit 141329563417f5337f5659d5500f4cbe16d64bd2 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 17:41:23 2020 +0300 Update blocking buttons options logic, fix button svg size commit 9e4f39aa6cb8e134d80d496b8a248b2fe6aceb99 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 16:30:48 2020 +0300 Fix button position commit 8aabff7daccb87ae02c2302e62e296b3cfc17608 Merge: 415a03346b614295Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 17:29:55 2020 +0300 Merge branch 'master' into feature/2050 commit 415a0334561733d92a0f7badd68101ef554dc689 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 17:05:51 2020 +0300 Add blocking options commit bc6aed92b6e12f27c2604501275b53bb8159d5bc Merge: 0de4fb3a 40b74522 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:49:06 2020 +0300 Merge branch 'feature/infinite_scroll_query_logs' into feature/2050 commit 40b745225112cf8d664220ed8f484b0aa16e997c Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:46:27 2020 +0300 Remove dynamic translation of toasts commit 0de4fb3a4cd785c6b52e860e204c6e13d356b178 Merge: 1ab14471 f08fa7b8 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:07:30 2020 +0300 Merge branch 'feature/infinite_scroll_query_logs' into feature/2050 ... and 51 more commits
208 lines
3.3 KiB
CSS
208 lines
3.3 KiB
CSS
.nav-tabs .nav-link.active {
|
|
border-color: var(--green-74);
|
|
color: var(--green-74);
|
|
background: transparent;
|
|
}
|
|
|
|
.nav-tabs .nav-link.active:hover {
|
|
border-color: #58a273;
|
|
color: #58a273;
|
|
}
|
|
|
|
.nav-icon {
|
|
width: 15px;
|
|
height: 15px;
|
|
margin-right: 6px;
|
|
stroke: #9aa0ac;
|
|
}
|
|
|
|
.nav-tabs .nav-link.active .nav-icon,
|
|
.nav-tabs .nav-item.show .nav-icon {
|
|
stroke: var(--green-74);
|
|
}
|
|
|
|
.nav-tabs .nav-link.active:hover .nav-icon,
|
|
.nav-tabs .nav-item.show:hover .nav-icon {
|
|
stroke: #58a273;
|
|
}
|
|
|
|
.nav-tabs .nav-link {
|
|
width: 100%;
|
|
border: 0;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
padding: 5px 0;
|
|
z-index: 102;
|
|
}
|
|
|
|
.mobile-menu {
|
|
position: fixed;
|
|
z-index: 103;
|
|
top: 0;
|
|
right: calc(100% + 5px);
|
|
display: block;
|
|
width: 250px;
|
|
height: 100vh;
|
|
transition: transform 0.3s ease;
|
|
background-color: #fff;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.mobile-menu--active {
|
|
transform: translateX(255px);
|
|
box-shadow: 15px 0 50px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.nav-tabs .nav-link--back {
|
|
height: 63px;
|
|
padding: 20px 0 21px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.nav-tabs .nav-link--account {
|
|
max-width: 160px;
|
|
font-size: 0.9rem;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header-brand-img {
|
|
height: 24px;
|
|
}
|
|
|
|
.nav-tabs .nav-item.show .nav-link {
|
|
color: var(--green-74);
|
|
background-color: #fff;
|
|
border-bottom-color: var(--green-74);
|
|
}
|
|
|
|
.header__right {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.header__logout {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 25px;
|
|
height: 25px;
|
|
min-width: 25px;
|
|
padding: 2px;
|
|
margin-left: 10px;
|
|
color: #9aa0ac;
|
|
}
|
|
|
|
.header__logout:hover,
|
|
.header__logout:focus {
|
|
color: #6e7687;
|
|
}
|
|
|
|
.header__logout-icon {
|
|
height: 100%;
|
|
}
|
|
|
|
.header__row {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.header__container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
padding-right: 0.75rem;
|
|
padding-left: 0.75rem;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.header__column:last-child {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.nav-tabs {
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.header {
|
|
padding: 0;
|
|
}
|
|
|
|
.nav-tabs .nav-link {
|
|
width: auto;
|
|
border-bottom: 1px solid transparent;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mobile-menu {
|
|
position: static;
|
|
display: flex;
|
|
padding: 0;
|
|
width: auto;
|
|
height: auto;
|
|
box-shadow: none;
|
|
overflow: initial;
|
|
}
|
|
|
|
.mobile-menu--active {
|
|
transform: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nav-icon {
|
|
display: none;
|
|
}
|
|
|
|
.nav-icon--gray {
|
|
color: #9aa0ac;
|
|
}
|
|
|
|
.nav-icon--white {
|
|
color: #fff;
|
|
}
|
|
|
|
.header-brand-img {
|
|
height: 32px;
|
|
}
|
|
|
|
.header__logout {
|
|
width: 35px;
|
|
height: 35px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.header__row {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header__column:last-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.nav-tabs {
|
|
margin: 0 -0.75rem;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1280px) {
|
|
.nav-tabs .nav-link {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.nav-icon {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.dns-status {
|
|
padding: 0.35em 0.5em;
|
|
line-height: 10px;
|
|
}
|