pixelegg changes from this morning

This commit is contained in:
Ralf Becker 2014-02-05 08:59:18 +00:00
parent bebecf9467
commit e12ba6c74e
3 changed files with 102 additions and 23 deletions

View File

@ -3956,7 +3956,7 @@ table.nextmatch_header img {
padding: 0.5em;
top: 5px;
position: fixed;
right: 5px;
right: 15px;
}
#egw_fw_logout:hover {
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
@ -3992,7 +3992,7 @@ table.nextmatch_header img {
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
padding: 0.5em;
top: 5px;
right: 45px;
right: 56px;
z-index: 200;
}
#egw_fw_print:hover {
@ -4036,6 +4036,10 @@ table.nextmatch_header img {
/*current user info*/
/*time zone*/
/*quick*/
/* Firefox */
/* Webkit */
/* IE */
/* Opera and prob css3 final iteration */
}
#egw_fw_topmenu_info_items .topmenu_info_item {
overflow: visible;
@ -4078,7 +4082,7 @@ table.nextmatch_header img {
float: right;
padding: 0.5em;
position: fixed;
right: 83px;
right: 96px;
top: 5px;
width: 16px;
height: 16px;
@ -4098,20 +4102,33 @@ table.nextmatch_header img {
top: -5px;
}
#egw_fw_topmenu_info_items img#topmenu_info_error {
width: 12px;
height: 12px;
position: fixed;
top: 14px;
right: 0px;
width: 16px;
height: 16px;
/*.Button_size_square_16;*/
border: 1px solid rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
padding: 0.5em;
top: 5px;
right: 45px;
padding: 7px 4px;
top: 6px;
right: 0px;
z-index: 200;
background-color: red;
background-color: #ff0000;
-moz-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
/* order: name, direction, duration, iteration-count, timing-function */
-moz-animation: blink normal 2s infinite ease-in-out;
/* Firefox */
-webkit-animation: blink normal 2s infinite ease-in-out;
/* Webkit */
-ms-animation: blink normal 2s infinite ease-in-out;
/* IE */
animation: blink normal 2s infinite ease-in-out;
/* Opera and prob css3 final iteration */
}
#egw_fw_topmenu_info_items img#topmenu_info_error:hover {
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
@ -4128,6 +4145,50 @@ table.nextmatch_header img {
-moz-box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
}
@-moz-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* ################################################################################################################
* Sidebar
* ################################################################################################################*/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 594 B

View File

@ -295,7 +295,7 @@
padding: 0.5em;
top: 5px;
position: fixed;
right: 5px;
right: 15px;
&:hover {.box_shadow_standard_light_hover;}
@ -323,7 +323,7 @@
.box_shadow_standard_light;
padding: 0.5em;
top: 5px;
right: 45px;
right: 56px;
z-index: 200;
&:hover {.box_shadow_standard_light_hover;}
&:active {.Complete_Button_active;}
@ -427,7 +427,7 @@
float: right;
padding: 0.5em;
position: fixed;
right: 83px;
right: 96px;
top: 5px;
.dimension_width_height_s;
&:before {content: "+"; font-size: 2em; color: @egw_color_1; line-height: 0.6em}
@ -450,26 +450,44 @@
// JS ERROR
img#topmenu_info_error{
.dimension_height_s;
.dimension_width_height_xs;
position: fixed;
top: 14px;
right: 0px;
/*.Button_size_square_16;*/
.Button_size_square_16;
.border_normal;
.box_shadow_standard_light;
padding: 0.5em;
top: 5px;
right: 45px;
padding: 7px 4px;
top: 6px;
right: 0px;
z-index: 200;
&:hover {.box_shadow_standard_light_hover;}
&:active {.Complete_Button_active;}
&:focus {.box_shadow_standard_light_inset;}
background-color: red;
background-color: @color_warning;
//blinking
-moz-transition:all 1s ease-in-out;
-webkit-transition:all 1s ease-in-out;
-o-transition:all 1s ease-in-out;
-ms-transition:all 1s ease-in-out;
transition:all 1s ease-in-out;
/* order: name, direction, duration, iteration-count, timing-function */
-moz-animation:blink normal 2s infinite ease-in-out; /* Firefox */
-webkit-animation:blink normal 2s infinite ease-in-out; /* Webkit */
-ms-animation:blink normal 2s infinite ease-in-out; /* IE */
animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}
@-moz-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Firefox */
@-webkit-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Webkit */
@-ms-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* IE */
@keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Opera and prob css3 final iteration */
}
// Ende items