electron-tabs/electron-tabs.css

140 lines
2.1 KiB
CSS
Raw Normal View History

2016-11-02 16:03:47 +00:00
.etabs-tabgroup {
2020-02-04 10:13:57 +00:00
width: 100%;
height: 32px;
background-color: #ccc;
cursor: default;
font: caption;
font-size: 14px;
-webkit-user-select: none;
user-select: none;
2020-03-10 20:46:55 +00:00
display: none;
}
.etabs-tabgroup.visible {
display: block;
2016-11-02 16:03:47 +00:00
}
.etabs-tabs {
}
.etabs-tab {
2020-02-04 10:13:57 +00:00
display: none;
position: relative;
color: #333;
height: 22px;
padding: 6px 8px 4px;
border: 1px solid #aaa;
border-bottom: none;
border-left: none;
background: linear-gradient(to bottom, rgba(234,234,234,1) 0%,rgba(204,204,204,1) 100%);
font: caption;
font-size: 14px;
background-color: #ccc;
cursor: default;
2016-11-02 16:59:56 +00:00
}
/* Dragula */
.etabs-tab.gu-mirror {
2020-02-04 10:13:57 +00:00
padding-bottom: 0;
2016-11-02 16:03:47 +00:00
}
.etabs-tab:first-child {
2020-02-04 10:13:57 +00:00
border-left: none;
2016-11-02 16:03:47 +00:00
}
.etabs-tab.visible {
2020-02-04 10:13:57 +00:00
display: inline-block;
float: left;
2016-11-02 16:03:47 +00:00
}
.etabs-tab.active {
2020-02-04 10:13:57 +00:00
background: #fff;
2016-11-02 16:03:47 +00:00
}
.etabs-tab.flash {
2020-02-04 10:13:57 +00:00
background: linear-gradient(to bottom, rgba(255,243,170,1) 0%,rgba(255,227,37,1) 100%);
2016-11-02 16:03:47 +00:00
}
.etabs-buttons {
2020-02-04 10:13:57 +00:00
float: left;
2016-11-02 16:03:47 +00:00
}
.etabs-buttons button {
2020-02-04 10:13:57 +00:00
float: left;
color: #333;
background: none;
border: none;
font-size: 12px;
margin-top: 6px;
border-radius: 2px;
margin-left: 4px;
width: 20px;
text-align: center;
padding: 4px 0;
2016-11-02 16:03:47 +00:00
}
.etabs-buttons button:hover {
2020-02-04 10:13:57 +00:00
color: #eee;
background-color: #aaa;
2016-11-02 16:03:47 +00:00
}
2017-06-03 13:01:10 +00:00
.etabs-tab-badge {
2020-02-04 10:13:57 +00:00
position: absolute;
right: 0;
top: -7px;
background: red;
border-radius: 100%;
text-align: center;
font-size: 10px;
padding: 0 5px;
2017-06-03 13:01:10 +00:00
}
.etabs-tab-badge.hidden {
2020-02-04 10:13:57 +00:00
display: none;
2017-06-03 13:01:10 +00:00
}
2016-11-02 16:03:47 +00:00
.etabs-tab-icon {
2020-02-04 10:13:57 +00:00
display: inline-block;
height: 16px;
2016-11-02 16:03:47 +00:00
}
.etabs-tab-icon img {
2020-02-04 10:13:57 +00:00
max-width: 16px;
max-height: 16px;
2016-11-02 16:03:47 +00:00
}
.etabs-tab-title {
2020-02-04 10:13:57 +00:00
display: inline-block;
margin-left: 10px;
2016-11-02 16:03:47 +00:00
}
.etabs-tab-buttons {
2020-02-04 10:13:57 +00:00
display: inline-block;
margin-left: 10px;
2016-11-02 16:03:47 +00:00
}
.etabs-tab-buttons button {
2020-02-04 10:13:57 +00:00
display: inline-block;
color: #333;
background: none;
border: none;
width: 20px;
text-align: center;
border-radius: 2px;
2016-11-02 16:03:47 +00:00
}
.etabs-tab-buttons button:hover {
2020-02-04 10:13:57 +00:00
color: #eee;
background-color: #aaa;
2016-11-02 16:03:47 +00:00
}
.etabs-views {
2020-02-04 10:58:28 +00:00
position: relative;
2020-02-04 10:13:57 +00:00
border-top: 1px solid #aaa;
height: calc(100vh - 33px);
2016-11-02 16:03:47 +00:00
}
.etab-view {
2020-02-04 10:13:57 +00:00
position: relative;
2016-11-02 16:03:47 +00:00
}