web-apps/apps/common/main/resources/less/tabbar.less

68 lines
1.7 KiB
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
.nav-tabs {
white-space: nowrap;
overflow: hidden;
> li {
float: none;
2020-02-13 09:09:05 +00:00
display: inline-block;
2016-03-11 00:48:53 +00:00
&.active {
2020-02-13 09:09:05 +00:00
> span, > span:hover, > span:focus {
2021-02-16 07:21:22 +00:00
background-color: @background-normal-ie;
2020-12-19 19:43:19 +00:00
background-color: @background-normal;
2021-02-16 07:21:22 +00:00
color: @text-normal-ie;
2020-12-19 19:43:19 +00:00
color: @text-normal;
2021-02-16 07:21:22 +00:00
border-color: @background-normal-ie;
2020-12-19 19:43:19 +00:00
border-color: @background-normal;
2016-03-11 00:48:53 +00:00
cursor: pointer;
}
}
2018-11-13 14:30:46 +00:00
&:not(.dragged) {
transition: left .2s;
}
2020-02-13 09:09:05 +00:00
> span {
2016-03-11 00:48:53 +00:00
display: inline;
2021-02-16 07:21:22 +00:00
background-color: @background-toolbar-ie;
2020-12-19 19:43:19 +00:00
background-color: @background-toolbar;
2021-02-16 07:21:22 +00:00
color: @text-secondary-ie;
2020-12-19 19:43:19 +00:00
color: @text-secondary;
2016-03-11 00:48:53 +00:00
padding-top: 0;
padding-bottom: 0;
white-space: pre;
text-align: center;
&::after {
content: attr(title);
font-weight: bold;
display: block;
}
2016-03-11 00:48:53 +00:00
&:hover, &:focus {
2021-02-16 07:21:22 +00:00
background-color: @background-toolbar-ie;
2020-12-19 19:43:19 +00:00
background-color: @background-toolbar;
2021-02-16 07:21:22 +00:00
border-color: @background-toolbar-ie;
2020-12-19 19:43:19 +00:00
border-color: @background-toolbar;
2016-03-11 00:48:53 +00:00
cursor: pointer;
}
}
}
&.bottom {
border-bottom: none;
border-top: none;
> li {
vertical-align: middle;
2020-02-13 09:09:05 +00:00
> span {
2016-03-11 00:48:53 +00:00
padding-bottom: 1px;
border-radius: 0 0 4px 4px;
}
}
}
}