Feature/sse-skeletone (#299)
* Fix Bug 43987 * [SSE] Update skeleton Co-authored-by: Julia Radzhabova <Julia.Radzhabova@onlyoffice.com>
This commit is contained in:
parent
325ac8096c
commit
40bea73251
|
@ -16,6 +16,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-left: 1px solid @gray-dark;
|
border-left: 1px solid @gray-dark;
|
||||||
|
line-height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-panel {
|
.settings-panel {
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-left: 1px solid @gray-dark;
|
border-left: 1px solid @gray-dark;
|
||||||
|
line-height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-panel {
|
.settings-panel {
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar ul {
|
.loadmask ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -96,10 +96,42 @@
|
||||||
height: 44px;
|
height: 44px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loadmask > .skformula {
|
||||||
|
height: 24px;
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .skformula ul {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: #e1e1e1 transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .skformula li {
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 19px;
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 20px;
|
||||||
|
background: #f7f7f7;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: transparent #e1e1e1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .skformula li:first-child {
|
||||||
|
width: 100px;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
font-size: 0;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #dfdfdf;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
@ -122,7 +154,7 @@
|
||||||
.loadmask > .placeholder > .columns:first-child {
|
.loadmask > .placeholder > .columns:first-child {
|
||||||
background: linear-gradient(#f1f1f1 19px, #d5d5d5 20px) 0 0;
|
background: linear-gradient(#f1f1f1 19px, #d5d5d5 20px) 0 0;
|
||||||
background-size: 20px 20px;
|
background-size: 20px 20px;
|
||||||
width: 35px;
|
width: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
|
@ -204,6 +236,7 @@
|
||||||
<link rel="stylesheet/less" type="text/css" href="resources/less/app.less" />
|
<link rel="stylesheet/less" type="text/css" href="resources/less/app.less" />
|
||||||
<!-- debug end -->
|
<!-- debug end -->
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="loading-mask" class="loadmask">
|
<div id="loading-mask" class="loadmask">
|
||||||
<div class="brendpanel"><div>
|
<div class="brendpanel"><div>
|
||||||
|
@ -214,6 +247,9 @@
|
||||||
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/><li class="fat"/></ul>
|
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/><li class="fat"/></ul>
|
||||||
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/></ul>
|
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/></ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="skformula">
|
||||||
|
<ul><li/><li/></ul>
|
||||||
|
</div>
|
||||||
<div class="placeholder">
|
<div class="placeholder">
|
||||||
<div class="columns"></div><div class="columns"></div>
|
<div class="columns"></div><div class="columns"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar ul {
|
.loadmask ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -98,10 +98,42 @@
|
||||||
height: 44px;
|
height: 44px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loadmask>.skformula {
|
||||||
|
height: 24px;
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask>.skformula ul {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: #e1e1e1 transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask>.skformula li {
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 19px;
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 20px;
|
||||||
|
background: #f7f7f7;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: transparent #e1e1e1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask>.skformula li:first-child {
|
||||||
|
width: 100px;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
font-size: 0;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #dfdfdf;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
@ -124,7 +156,7 @@
|
||||||
.loadmask > .placeholder > .columns:first-child {
|
.loadmask > .placeholder > .columns:first-child {
|
||||||
background: linear-gradient(#f1f1f1 19px, #d5d5d5 20px) 0 0;
|
background: linear-gradient(#f1f1f1 19px, #d5d5d5 20px) 0 0;
|
||||||
background-size: 20px 20px;
|
background-size: 20px 20px;
|
||||||
width: 35px;
|
width: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
|
@ -226,6 +258,9 @@
|
||||||
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/><li class="fat"/></ul>
|
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/><li class="fat"/></ul>
|
||||||
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/></ul>
|
<ul><li/><li class="space"/><li style="width: 240px;"/><li class="space"/><li style="width: 160px;"/><li class="space"/><li style="width: 390px;"/></ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="skformula">
|
||||||
|
<ul><li/><li/></ul>
|
||||||
|
</div>
|
||||||
<div class="placeholder">
|
<div class="placeholder">
|
||||||
<div class="columns"></div><div class="columns"></div>
|
<div class="columns"></div><div class="columns"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-left: 1px solid @gray-dark;
|
border-left: 1px solid @gray-dark;
|
||||||
|
line-height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-panel {
|
.settings-panel {
|
||||||
|
|
Loading…
Reference in a new issue