pulsar/static/tabs.css

65 lines
1.0 KiB
CSS
Raw Normal View History

2013-02-04 20:52:39 +04:00
.tabs {
font: caption;
-webkit-user-select: none;
display: -webkit-box;
-webkit-box-align: center;
2013-02-04 20:52:39 +04:00
}
.tab {
cursor: default;
padding: 2px 21px 2px 9px;
-webkit-box-flex: 2;
position: relative;
width: 175px;
max-width: 175px;
min-width: 40px;
box-sizing: border-box;
2013-02-06 05:29:42 +04:00
text-shadow: 0 -1px 1px black;
2013-02-04 20:52:39 +04:00
}
.tab.active {
-webkit-box-flex: 1;
}
2013-02-04 20:52:39 +04:00
.tab .file-name {
font-size: 11px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 3px 5px;
2013-02-04 20:52:39 +04:00
}
.tab .close-icon {
font-family: 'Octicons Regular';
2013-02-06 05:14:27 +04:00
font-size: 12px;
width: 12px;
height: 12px;
2013-02-04 20:52:39 +04:00
cursor: pointer;
position: absolute;
2013-02-06 08:19:07 +04:00
color: rgba(255, 255, 255, 0.5);
2013-02-06 05:14:27 +04:00
right: 5px;
top: 4px;
2013-02-04 20:52:39 +04:00
-webkit-font-smoothing: antialiased;
}
.tab .close-icon:before {
content: "\f081";
}
.tab .close-icon:hover {
2013-02-06 08:19:07 +04:00
color: #fff;
2013-02-06 05:14:27 +04:00
}
.tab.file-modified .close-icon {
2013-02-06 05:29:42 +04:00
top: 11px;
2013-02-06 05:14:27 +04:00
width: 5px;
height: 5px;
right: 5px;
2013-02-06 08:19:07 +04:00
border: 2px solid #66a6ff;
2013-02-06 05:29:42 +04:00
border-radius: 12px;
2013-02-06 05:14:27 +04:00
}
.tab.file-modified .close-icon:before {
content: "";
2013-02-04 20:52:39 +04:00
}