mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 05:29:20 +03:00
Code refactoring
a lot of small fixes (Closes #173) Added login field (ownCloud package)
This commit is contained in:
parent
a059b3d063
commit
fed896776f
129 changed files with 1016 additions and 804 deletions
|
|
@ -37,6 +37,7 @@
|
|||
right: 0;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
min-width: 100px;
|
||||
// padding: 5px;
|
||||
|
||||
.content {
|
||||
|
|
|
|||
|
|
@ -1,24 +1,24 @@
|
|||
.nano:before, .nano:after {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
z-index: 102;
|
||||
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.nano:before {
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.nano:after {
|
||||
bottom: -2px;
|
||||
}
|
||||
|
||||
.nano.nano-scrolllimit-top:before, .nano.nano-scrolllimit-bottom:after {
|
||||
display: block;
|
||||
.nano:before, .nano:after {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
z-index: 102;
|
||||
-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
|
||||
-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.nano:before {
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
.nano:after {
|
||||
bottom: -10px;
|
||||
}
|
||||
|
||||
.nano.nano-scrolllimit-top:before, .nano.nano-scrolllimit-bottom:after {
|
||||
display: block;
|
||||
}
|
||||
|
|
@ -190,6 +190,7 @@ html.cssanimations {
|
|||
height: 15px;
|
||||
background-color: #ddd;
|
||||
margin: 0 5px;
|
||||
.box-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
|
||||
|
||||
border-radius: 100%;
|
||||
display: inline-block;
|
||||
|
|
@ -209,7 +210,7 @@ html.cssanimations {
|
|||
-webkit-animation-delay: -0.16s;
|
||||
animation-delay: -0.16s;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@-webkit-keyframes bouncedelay {
|
||||
|
|
|
|||
|
|
@ -122,6 +122,8 @@ html.rgba.textshadow {
|
|||
.tooltip {
|
||||
font-size: 14px;
|
||||
z-index: 2000 !important;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
&.in {
|
||||
.opacity(100);
|
||||
|
|
@ -130,17 +132,20 @@ html.rgba.textshadow {
|
|||
.tooltip-class {
|
||||
}
|
||||
|
||||
.tooltip-inner {
|
||||
max-width: 400px;
|
||||
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
||||
padding: 5px 10px;
|
||||
.border-radius(2px);
|
||||
}
|
||||
|
||||
.tooltip-big {
|
||||
font-size: 18px;
|
||||
padding: 0 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.tooltip-inner {
|
||||
padding: 5px 10px;
|
||||
.border-radius(2px);
|
||||
}
|
||||
|
||||
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
|
||||
.btn-group > .btn:first-child {
|
||||
-webkit-border-top-left-radius: @btnBorderRadius;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue