2013-08-22 06:35:47 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
height: 30px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background: white;
|
|
|
|
line-height: 30px;
|
|
|
|
list-style-type: none;
|
|
|
|
z-index: 99;
|
|
|
|
|
2013-08-23 01:27:16 +00:00
|
|
|
hr {
|
|
|
|
border: 1px solid rgba(0, 0, 0, .2);
|
|
|
|
margin: 4px 8px;
|
|
|
|
}
|
|
|
|
|
2013-08-22 06:35:47 +00:00
|
|
|
& > li {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 8px;
|
2013-08-23 01:27:16 +00:00
|
|
|
line-height: initial;
|
2013-08-22 06:35:47 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #EEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
display: none;
|
|
|
|
min-width: 150px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
background: white;
|
|
|
|
padding: 0;
|
|
|
|
margin-left: -8px;
|
|
|
|
box-shadow: 4px 8px 16px rgba(0, 0, 0, .1);
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #EEE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
height: 32px;
|
|
|
|
width: 100%;
|
2013-08-31 20:41:51 +00:00
|
|
|
background: #EEE;
|
2013-09-01 18:34:21 +00:00
|
|
|
padding: 2px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2013-08-22 06:35:47 +00:00
|
|
|
|
|
|
|
span {
|
2013-09-01 18:34:21 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 300px;
|
|
|
|
padding: 0px 4px;
|
2013-08-22 06:35:47 +00:00
|
|
|
margin-right: 3px;
|
2013-08-31 20:41:51 +00:00
|
|
|
background: white;
|
|
|
|
color: #666;
|
2013-09-01 18:34:21 +00:00
|
|
|
border-bottom: 4px solid white;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2013-08-22 06:35:47 +00:00
|
|
|
|
|
|
|
&.active {
|
2013-09-01 18:34:21 +00:00
|
|
|
border-bottom: 4px solid #808;
|
2013-08-31 20:41:51 +00:00
|
|
|
color: black;
|
2013-08-22 06:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
2013-08-31 20:41:51 +00:00
|
|
|
color: #808;
|
2013-09-01 18:34:21 +00:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin-left: 4px;
|
2013-08-22 06:35:47 +00:00
|
|
|
|
|
|
|
&:hover {
|
2013-08-31 20:41:51 +00:00
|
|
|
color: black;
|
2013-08-22 06:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 60px;
|
2013-08-24 00:36:15 +00:00
|
|
|
bottom: 30px;
|
2013-08-23 23:03:46 +00:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-bar {
|
|
|
|
position: fixed;
|
2013-08-22 06:35:47 +00:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2013-08-23 23:03:46 +00:00
|
|
|
bottom: 0;
|
2013-08-24 00:36:15 +00:00
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
2013-08-23 23:03:46 +00:00
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
select {
|
|
|
|
height: 20px;
|
|
|
|
}
|
2013-08-22 06:35:47 +00:00
|
|
|
}
|
2013-09-01 18:09:09 +00:00
|
|
|
|
|
|
|
.dialog {
|
|
|
|
position: fixed;
|
|
|
|
width: 250px;
|
|
|
|
left: ~"calc(50% - 100px)";
|
|
|
|
top: 200px;
|
|
|
|
background: white;
|
|
|
|
box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
|
|
|
|
z-index: 999;
|
|
|
|
padding: 10px;
|
|
|
|
border: 2px solid #AAA;
|
|
|
|
|
|
|
|
.button-row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 8px;
|
|
|
|
border: 1px solid #888;
|
|
|
|
text-align: center;
|
|
|
|
background: white;
|
|
|
|
min-width: 75px;
|
|
|
|
box-shadow: 4px 4px 8px rgba(0, 0, 0, .1);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-overlay {
|
|
|
|
position: fixed;
|
|
|
|
content: "";
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(255, 255, 255, .8);
|
|
|
|
z-index: 99;
|
|
|
|
}
|