Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-09-26 20:15:39 +0300
committerbrantje <brantje@gmail.com>2016-09-26 20:15:39 +0300
commite789ad49263a53f6db5cbef0d42f1ca9bcb93d8b (patch)
tree3a96851ba89caaf3e178e1805c83e91cb2c8420a /css/app.css
parent994c9839fada23ef2fc14ad40c2b74bd7fffeadf (diff)
Show spinner during vault decryption
Diffstat (limited to 'css/app.css')
-rw-r--r--css/app.css41
1 files changed, 35 insertions, 6 deletions
diff --git a/css/app.css b/css/app.css
index 71da8a74..9a2de8a5 100644
--- a/css/app.css
+++ b/css/app.css
@@ -144,8 +144,14 @@
overflow-x: hidden; }
#app-content #app-content-wrapper {
min-height: 95%; }
- #app-content #app-content-wrapper #controls {
+ #app-content #app-content-wrapper #passman-controls {
border-bottom: 1px solid #c9c9c9; }
+ #app-content #app-content-wrapper .title {
+ width: calc( 100% - 325px);
+ text-align: center;
+ display: inline-block;
+ font-weight: bold;
+ margin-top: 10px; }
#app-content #app-content-wrapper .actions.creatable {
float: left;
overflow: hidden; }
@@ -166,11 +172,6 @@
right: inherit;
left: 10px;
top: -19px; }
- #app-content #app-content-wrapper .actions.creatable .title {
- width: calc( 100% - 325px);
- text-align: center;
- display: inline-block;
- font-weight: bold; }
#app-content #app-content-wrapper .searchboxContainer {
display: inline-block;
margin-right: 14px;
@@ -332,6 +333,34 @@
background-image: none;
background-color: #0082c9; }
+.loaderContainer {
+ height: 140px;
+ width: 120px;
+ margin-top: 30px;
+ margin-left: -60px;
+ top: 50%;
+ left: 50%;
+ position: absolute; }
+
+.loaderContainer .text {
+ width: 120px;
+ text-align: center; }
+
+.loader {
+ border-bottom: 10px solid #1d2d44;
+ border-left: 10px solid #c9c9c9;
+ border-right: 10px solid #c9c9c9;
+ border-top: 10px solid #c9c9c9;
+ height: 120px;
+ width: 120px;
+ border-radius: 120px;
+ animation: 1.1s linear 0s normal none infinite running load8; }
+
+@keyframes load8 {
+ 0% {
+ transform: rotate(0deg); }
+ 100% {
+ transform: rotate(360deg); } }
.settings-container div {
padding-left: 15px; }