forked from extern/egroupware
infolog: edit - link-to -
button + Datei aussuchen... + Link to Filesystem app.less pixelegg.less
This commit is contained in:
parent
a46a8a8968
commit
643418342d
@ -212,8 +212,8 @@
|
|||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 10px 20px;
|
margin: 0px 20px;
|
||||||
padding: 3px;
|
/*padding: 3px;*/
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
background-color: #b4b4b4;
|
background-color: #b4b4b4;
|
||||||
@ -246,8 +246,17 @@
|
|||||||
-webkit-border-radius: 5px;
|
-webkit-border-radius: 5px;
|
||||||
-moz-border-radius: 5px;
|
-moz-border-radius: 5px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
margin-top: 1em;
|
left: 0px;
|
||||||
padding-top: 0.2em;
|
margin-left: 60px;
|
||||||
|
/*margin-top: 1em;*/
|
||||||
|
/*padding-top: 0.2em;*/
|
||||||
|
/*width: auto;*/
|
||||||
|
}
|
||||||
|
.et2_link_to .et2_file span {
|
||||||
|
background-image: url("../images/upload.png");
|
||||||
|
background-position: 4px 2px;
|
||||||
|
background-size: 16px 16px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.et2_link_to .et2_file input {
|
.et2_link_to .et2_file input {
|
||||||
border: none;
|
border: none;
|
||||||
@ -259,6 +268,51 @@
|
|||||||
.et2_link_to .et2_file:active {
|
.et2_link_to .et2_file:active {
|
||||||
background-color: #1aa200 !important;
|
background-color: #1aa200 !important;
|
||||||
}
|
}
|
||||||
|
.et2_link_to button {
|
||||||
|
/*.border_normal;*/
|
||||||
|
/*.box_shadow_standard_light;*/
|
||||||
|
/*.rounded (3px);*/
|
||||||
|
color: #000000;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-webkit-transition-property: background-color;
|
||||||
|
-moz-transition-property: background-color;
|
||||||
|
-o-transition-property: background-color;
|
||||||
|
transition-property: background-color;
|
||||||
|
-webkit-transition-duration: 0.5s;
|
||||||
|
-moz-transition-duration: 0.5s;
|
||||||
|
-o-transition-duration: 0.5s;
|
||||||
|
transition-duration: 0.5s;
|
||||||
|
-webkit-transition-timing-function: linear;
|
||||||
|
-moz-transition-timing-function: linear;
|
||||||
|
-o-transition-timing-function: linear;
|
||||||
|
transition-timing-function: linear;
|
||||||
|
background-color: #b4b4b4;
|
||||||
|
padding: 3px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
.et2_link_to button:hover {
|
||||||
|
/*.background_color_20_gray;*/
|
||||||
|
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
|
||||||
|
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
|
||||||
|
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
background-color: #1aa200 !important;
|
||||||
|
}
|
||||||
|
.et2_link_to button:active {
|
||||||
|
/*.background_color_30_gray;*/
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.9);
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
|
||||||
|
-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);
|
||||||
|
background-color: #1aa200;
|
||||||
|
background-color: #1aa200 !important;
|
||||||
|
}
|
||||||
.et2_link {
|
.et2_link {
|
||||||
color: #0c5da5;
|
color: #0c5da5;
|
||||||
}
|
}
|
||||||
@ -276,12 +330,31 @@
|
|||||||
width: 14px !important;
|
width: 14px !important;
|
||||||
height: 14px !important;
|
height: 14px !important;
|
||||||
}
|
}
|
||||||
|
.et2_link_list td div.delete {
|
||||||
|
visibility: hidden;
|
||||||
|
background-image: url("../images/close.png");
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 16px 16px;
|
||||||
|
background-color: #ae1d00;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.et2_link_list td div.delete:hover {
|
||||||
|
background-color: #e12500 !important;
|
||||||
|
}
|
||||||
|
.et2_link_list td div.delete:active {
|
||||||
|
background-color: #e12500 !important;
|
||||||
|
}
|
||||||
.egw_tooltip {
|
.egw_tooltip {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Link_entry_widget
|
* Link_entry_widget
|
||||||
*/
|
*/
|
||||||
|
div.et2_link_to {
|
||||||
|
width: auto;
|
||||||
|
/*input{width: 72% !important;}*/
|
||||||
|
}
|
||||||
div.et2_link_to button {
|
div.et2_link_to button {
|
||||||
/*.border_normal;*/
|
/*.border_normal;*/
|
||||||
/*.box_shadow_standard_light;*/
|
/*.box_shadow_standard_light;*/
|
||||||
@ -325,9 +398,6 @@
|
|||||||
background-color: #1aa200;
|
background-color: #1aa200;
|
||||||
background-color: #1aa200 !important;
|
background-color: #1aa200 !important;
|
||||||
}
|
}
|
||||||
div.et2_link_to input {
|
|
||||||
width: 72% !important;
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* Tabs widget
|
* Tabs widget
|
||||||
*/
|
*/
|
||||||
@ -1893,6 +1963,8 @@ div#egwpopup_message {
|
|||||||
/*Calendar ##############*/
|
/*Calendar ##############*/
|
||||||
td.message {
|
td.message {
|
||||||
background-color: #e6e6e6 !important;
|
background-color: #e6e6e6 !important;
|
||||||
|
height: 0px;
|
||||||
|
padding: 0px;
|
||||||
}
|
}
|
||||||
td.message span.message {
|
td.message span.message {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
@ -2017,6 +2089,7 @@ body {
|
|||||||
height: 99% !important;
|
height: 99% !important;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
line-height: 1.28;
|
line-height: 1.28;
|
||||||
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
body,
|
body,
|
||||||
textarea {
|
textarea {
|
||||||
@ -2071,6 +2144,7 @@ h1 {
|
|||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
line-height: 330%;
|
line-height: 330%;
|
||||||
margin: 0.4em 0 0;
|
margin: 0.4em 0 0;
|
||||||
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
.headline_h1 {
|
.headline_h1 {
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
@ -3612,6 +3686,7 @@ table.nextmatch_header img {
|
|||||||
border-top-left-radius: 10px;
|
border-top-left-radius: 10px;
|
||||||
color: red;
|
color: red;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
padding-top: 1em;
|
||||||
}
|
}
|
||||||
#loginMainDiv div#centerBox #loginCdMessage span {
|
#loginMainDiv div#centerBox #loginCdMessage span {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
@ -163,11 +163,13 @@ span.et2_date span {
|
|||||||
/*Link to / Selector Widget*/
|
/*Link to / Selector Widget*/
|
||||||
.et2_link_to {
|
.et2_link_to {
|
||||||
|
|
||||||
|
|
||||||
|
// Link to Filesystem
|
||||||
.et2_button_icon {
|
.et2_button_icon {
|
||||||
.Complete_Button_Icon_normal;
|
.Complete_Button_Icon_normal;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 10px 20px;
|
margin: 0px 20px;
|
||||||
padding: 3px;
|
/*padding: 3px;*/
|
||||||
.dimension_width_height_m;
|
.dimension_width_height_m;
|
||||||
background-color: @gray_30;
|
background-color: @gray_30;
|
||||||
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !important;}
|
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !important;}
|
||||||
@ -176,8 +178,19 @@ span.et2_date span {
|
|||||||
.et2_file{
|
.et2_file{
|
||||||
background-color: @gray_0 !important;
|
background-color: @gray_0 !important;
|
||||||
.rounded (5px);
|
.rounded (5px);
|
||||||
margin-top: 1em;
|
left: 0px;
|
||||||
padding-top: 0.2em;
|
margin-left: 60px;
|
||||||
|
/*margin-top: 1em;*/
|
||||||
|
/*padding-top: 0.2em;*/
|
||||||
|
/*width: auto;*/
|
||||||
|
|
||||||
|
span {
|
||||||
|
background-image: url("../images/upload.png");
|
||||||
|
background-position: 4px 2px;
|
||||||
|
background-size: 16px 16px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
input{
|
input{
|
||||||
border: none;
|
border: none;
|
||||||
@ -189,7 +202,12 @@ span.et2_date span {
|
|||||||
&:active {background-color: @color_positive_action_active !important;}
|
&:active {background-color: @color_positive_action_active !important;}
|
||||||
}
|
}
|
||||||
|
|
||||||
button {}
|
button {
|
||||||
|
.Complete_Button_normal; padding: 3px; .dimension_height_sm;
|
||||||
|
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !important;}
|
||||||
|
&:active {.Complete_Button_Icon_active; background-color: @color_positive_action_active !important;}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,16 +215,38 @@ span.et2_date span {
|
|||||||
.et2_link {
|
.et2_link {
|
||||||
color: @egw_color_2_a;
|
color: @egw_color_2_a;
|
||||||
}
|
}
|
||||||
.et2_link_list tr {
|
.et2_link_list{
|
||||||
cursor: pointer;
|
tr {
|
||||||
&:hover {background-color: @color_hover_row;}
|
cursor: pointer;
|
||||||
&:active {background-color: @color_active_row;}
|
&:hover {background-color: @color_hover_row;}
|
||||||
}
|
&:active {background-color: @color_active_row;}
|
||||||
.et2_link_list .icon img, .et2_link_list .icon {
|
}
|
||||||
width: 14px !important;
|
|
||||||
height: 14px !important;
|
.icon img,
|
||||||
|
.icon {
|
||||||
|
width: 14px !important;
|
||||||
|
height: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
div.delete {
|
||||||
|
visibility: hidden;
|
||||||
|
background-image: url("../images/close.png");
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 16px 16px;
|
||||||
|
background-color: @color_negative_action;
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
&:hover {background-color: @color_negative_action_active !important;}
|
||||||
|
&:active {background-color: @color_negative_action_active !important;}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.egw_tooltip
|
.egw_tooltip
|
||||||
{
|
{
|
||||||
background-color: @color_tooltip;
|
background-color: @color_tooltip;
|
||||||
@ -217,15 +257,16 @@ span.et2_date span {
|
|||||||
*/
|
*/
|
||||||
div.et2_link_to{
|
div.et2_link_to{
|
||||||
|
|
||||||
|
width: auto;
|
||||||
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
.Complete_Button_normal;
|
||||||
|
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !important;}
|
||||||
|
&:active {.Complete_Button_Icon_active; background-color: @color_positive_action_active !important;}
|
||||||
|
}
|
||||||
|
|
||||||
.Complete_Button_normal;
|
/*input{width: 72% !important;}*/
|
||||||
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !important;}
|
|
||||||
&:active {.Complete_Button_Icon_active; background-color: @color_positive_action_active !important;}
|
|
||||||
}
|
|
||||||
|
|
||||||
input{width: 72% !important;}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// defined in layout-dialog.less
|
// defined in layout-dialog.less
|
||||||
|
@ -123,6 +123,7 @@ body{
|
|||||||
height: 99% !important;
|
height: 99% !important;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
line-height: 1.28;
|
line-height: 1.28;
|
||||||
|
font-weight: normal;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,6 +179,7 @@ h1 {
|
|||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
line-height: 330%;
|
line-height: 330%;
|
||||||
margin: 0.4em 0 0;
|
margin: 0.4em 0 0;
|
||||||
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
.headline_h1 {
|
.headline_h1 {
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
|
@ -76,6 +76,7 @@
|
|||||||
// Meldung
|
// Meldung
|
||||||
#loginScreenMessage{
|
#loginScreenMessage{
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -85,6 +86,7 @@
|
|||||||
.border_radius_button_lefttop;
|
.border_radius_button_lefttop;
|
||||||
color: red;
|
color: red;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
padding-top: 1em;
|
||||||
|
|
||||||
|
|
||||||
// Text der Meldung
|
// Text der Meldung
|
||||||
|
@ -97,7 +97,10 @@
|
|||||||
|
|
||||||
td.message {
|
td.message {
|
||||||
background-color: @gray_10 !important;
|
background-color: @gray_10 !important;
|
||||||
span.message {
|
height: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
span.message {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
border-bottom: 2px solid @gray_10;
|
border-bottom: 2px solid @gray_10;
|
||||||
color: red;
|
color: red;
|
||||||
|
Loading…
Reference in New Issue
Block a user