2021-03-28 20:21:55 +02:00
|
|
|
*, *::after, *::before {
|
2021-09-03 17:39:13 +02:00
|
|
|
user-select: none;
|
2021-03-28 20:21:55 +02:00
|
|
|
-webkit-user-select: none;
|
|
|
|
/*-webkit-user-drag: none; */
|
|
|
|
}
|
|
|
|
|
2021-03-22 21:17:43 +01:00
|
|
|
#menubar {
|
2020-12-08 19:59:56 +01:00
|
|
|
position:fixed;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
height:28px;
|
|
|
|
background-color:rgb(37, 37, 37);
|
|
|
|
color:white;
|
|
|
|
cursor: move;
|
|
|
|
-webkit-app-region: drag;
|
2021-09-03 17:39:13 +02:00
|
|
|
user-select: none;
|
2020-12-08 19:59:56 +01:00
|
|
|
-webkit-user-select: none;
|
2021-03-22 21:17:43 +01:00
|
|
|
z-index: 100;
|
2020-12-08 19:59:56 +01:00
|
|
|
}
|
|
|
|
|
2021-03-28 20:21:55 +02:00
|
|
|
#menubar ul {
|
2020-12-08 19:59:56 +01:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menubar .left{
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:39:13 +02:00
|
|
|
.left > img {
|
|
|
|
padding-left: 15px;
|
|
|
|
height: 28px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-08 19:59:56 +01:00
|
|
|
#menubar .right{
|
|
|
|
float: right;
|
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menubar .right li,
|
|
|
|
#menubar .left li {
|
|
|
|
display: inline-block;
|
|
|
|
height:28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menubar .right li:hover,
|
|
|
|
#menubar .left li:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#minimize-btn:hover,
|
|
|
|
#max-unmax-btn:hover{
|
|
|
|
background-color: rgb(55, 55, 55);
|
|
|
|
transition: 0.3s background-color ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#close-btn:hover{
|
|
|
|
background-color:red;
|
|
|
|
transition: 0.3s background-color ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.material-icons{
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
2021-09-19 17:31:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#vue {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2021-12-13 16:46:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.iziToast-wrapper-topRight {
|
|
|
|
top: 25px;
|
2020-12-08 19:59:56 +01:00
|
|
|
}
|