mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 05:11:41 +02:00
et2_required class to display textfields as required, but not actually using required attribute, fixes changing infolog type does not update status for new entries
This commit is contained in:
parent
485849fe68
commit
c11df6e2b3
@ -33,7 +33,7 @@
|
|||||||
/**
|
/**
|
||||||
* Styles for etemplate2 widgets
|
* Styles for etemplate2 widgets
|
||||||
* Überschreibt egroupware/etemplate/templates/default/etemplate2.css
|
* Überschreibt egroupware/etemplate/templates/default/etemplate2.css
|
||||||
*
|
*
|
||||||
* @version: 1
|
* @version: 1
|
||||||
* Stefan Reinhardt
|
* Stefan Reinhardt
|
||||||
*/
|
*/
|
||||||
@ -227,10 +227,10 @@
|
|||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding-top: 0.2em;
|
padding-top: 0.2em;
|
||||||
/* &:before {
|
/* &:before {
|
||||||
content: "+ ";
|
content: "+ ";
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
color: @egw_color_1_a;
|
color: @egw_color_1_a;
|
||||||
line-height: 0.6em;
|
line-height: 0.6em;
|
||||||
padding-left: 0.1em;
|
padding-left: 0.1em;
|
||||||
padding-right: 0em;
|
padding-right: 0em;
|
||||||
background-color: @egw_color_2_a;
|
background-color: @egw_color_2_a;
|
||||||
@ -388,6 +388,7 @@
|
|||||||
/**
|
/**
|
||||||
* Validation
|
* Validation
|
||||||
*/
|
*/
|
||||||
|
.et2_required,
|
||||||
[required] {
|
[required] {
|
||||||
background-color: #ffe9a6;
|
background-color: #ffe9a6;
|
||||||
-webkit-border-top-right-radius: 3px;
|
-webkit-border-top-right-radius: 3px;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Styles for etemplate2 widgets
|
* Styles for etemplate2 widgets
|
||||||
* Überschreibt egroupware/etemplate/templates/default/etemplate2.css
|
* Überschreibt egroupware/etemplate/templates/default/etemplate2.css
|
||||||
*
|
*
|
||||||
* @version: 1
|
* @version: 1
|
||||||
* Stefan Reinhardt
|
* Stefan Reinhardt
|
||||||
*/
|
*/
|
||||||
@ -75,7 +75,7 @@ div.et2_hbox_right {
|
|||||||
*/
|
*/
|
||||||
.et2_button {
|
.et2_button {
|
||||||
text-shadow: 0px 0px !important;
|
text-shadow: 0px 0px !important;
|
||||||
.Complete_Button_normal;
|
.Complete_Button_normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ img.et2_button_icon[src*="svg"]{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*look in layout_content_elements*/
|
/*look in layout_content_elements*/
|
||||||
button.et2_button_text,
|
button.et2_button_text,
|
||||||
input[type=button] {}
|
input[type=button] {}
|
||||||
|
|
||||||
|
|
||||||
@ -136,7 +136,7 @@ span.et2_date span {
|
|||||||
|
|
||||||
/*Link to / Selector Widget*/
|
/*Link to / Selector Widget*/
|
||||||
.et2_link_to {
|
.et2_link_to {
|
||||||
|
|
||||||
.et2_button_icon {
|
.et2_button_icon {
|
||||||
.Complete_Button_Icon_normal;
|
.Complete_Button_Icon_normal;
|
||||||
float: left;
|
float: left;
|
||||||
@ -159,10 +159,10 @@ span.et2_date span {
|
|||||||
|
|
||||||
}
|
}
|
||||||
/* &:before {
|
/* &:before {
|
||||||
content: "+ ";
|
content: "+ ";
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
color: @egw_color_1_a;
|
color: @egw_color_1_a;
|
||||||
line-height: 0.6em;
|
line-height: 0.6em;
|
||||||
padding-left: 0.1em;
|
padding-left: 0.1em;
|
||||||
padding-right: 0em;
|
padding-right: 0em;
|
||||||
background-color: @egw_color_2_a;
|
background-color: @egw_color_2_a;
|
||||||
@ -181,9 +181,9 @@ span.et2_date span {
|
|||||||
color: @egw_color_2_a;
|
color: @egw_color_2_a;
|
||||||
}
|
}
|
||||||
.et2_link_list tr {
|
.et2_link_list tr {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
&:hover {background-color: @color_hover_row;}
|
&:hover {background-color: @color_hover_row;}
|
||||||
&:active {background-color: @color_active_row;}
|
&:active {background-color: @color_active_row;}
|
||||||
}
|
}
|
||||||
.et2_link_list .icon img, .et2_link_list .icon {
|
.et2_link_list .icon img, .et2_link_list .icon {
|
||||||
width: 14px !important;
|
width: 14px !important;
|
||||||
@ -202,21 +202,21 @@ div.et2_link_to{
|
|||||||
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
|
||||||
.Complete_Button_normal;
|
.Complete_Button_normal;
|
||||||
&:hover {.Complete_Button_Icon_hover; background-color: @color_positive_action_active !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;}
|
&:active {.Complete_Button_Icon_active; background-color: @color_positive_action_active !important;}
|
||||||
}
|
}
|
||||||
|
|
||||||
input{width: 72% !important;}
|
input{width: 72% !important;}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
div.et2_link_entry{
|
div.et2_link_entry{
|
||||||
|
|
||||||
//left
|
//left
|
||||||
select {width: 30% !important;;}
|
select {width: 30% !important;;}
|
||||||
|
|
||||||
//center
|
//center
|
||||||
input.ui-autocomplete-input {
|
input.ui-autocomplete-input {
|
||||||
width: 51% !important;;
|
width: 51% !important;;
|
||||||
@ -243,9 +243,9 @@ div.et2_link_entry{
|
|||||||
/*.border_radius(3px,0,0,3px);*/
|
/*.border_radius(3px,0,0,3px);*/
|
||||||
|
|
||||||
.background_color_25_gray;
|
.background_color_25_gray;
|
||||||
.inner_shadow(1px, 0px, 0px, 0.5);
|
.inner_shadow(1px, 0px, 0px, 0.5);
|
||||||
-webkit-box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
-webkit-box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
||||||
-moz-box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
-moz-box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
||||||
box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
@ -288,18 +288,18 @@ div.et2_link_entry{
|
|||||||
|
|
||||||
.et2_tabheader {
|
.et2_tabheader {
|
||||||
padding-left: 0em;
|
padding-left: 0em;
|
||||||
border-bottom: 1px solid #bfbfbf;
|
border-bottom: 1px solid #bfbfbf;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
:first-child {
|
:first-child {
|
||||||
margin-left: 0.3em;
|
margin-left: 0.3em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validation
|
* Validation
|
||||||
*/
|
*/
|
||||||
[required] {
|
.et2_required, [required] {
|
||||||
background-color: lighten(@egw_color_1_e, 10%);
|
background-color: lighten(@egw_color_1_e, 10%);
|
||||||
.border_radius (3px, 3px ,3px ,3px );
|
.border_radius (3px, 3px ,3px ,3px );
|
||||||
}
|
}
|
||||||
@ -321,7 +321,7 @@ hr {
|
|||||||
|
|
||||||
.et2_grid td {
|
.et2_grid td {
|
||||||
/* border: 1px dashed silver;*/
|
/* border: 1px dashed silver;*/
|
||||||
|
|
||||||
.gray {
|
.gray {
|
||||||
padding: 1em; background-color: @color_hint;
|
padding: 1em; background-color: @color_hint;
|
||||||
span {background-color: transparent;}
|
span {background-color: transparent;}
|
||||||
@ -361,33 +361,33 @@ hr {
|
|||||||
background-color: @gray_30;
|
background-color: @gray_30;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
border-color: @gray_100;
|
border-color: @gray_100;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
height: 37px;
|
height: 37px;
|
||||||
.border_radius (15px, 3px, 0px, 0px);
|
.border_radius (15px, 3px, 0px, 0px);
|
||||||
|
|
||||||
|
|
||||||
select {margin-top: 10px;}
|
select {margin-top: 10px;}
|
||||||
|
|
||||||
.et2_label {
|
.et2_label {
|
||||||
|
|
||||||
/* font-size: 0.9em;*/
|
/* font-size: 0.9em;*/
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
|
|
||||||
|
|
||||||
select {
|
select {
|
||||||
/*.Complete_Button_select;*/
|
/*.Complete_Button_select;*/
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
margin-right: 1px;
|
margin-right: 1px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
|
||||||
max-width: 14% !important;
|
max-width: 14% !important;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
&:hover{
|
&:hover{
|
||||||
.Complete_Button_select_hover;
|
.Complete_Button_select_hover;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:after {}
|
&:after {}
|
||||||
|
|
||||||
/*Dialog - Addressbook - View */
|
/*Dialog - Addressbook - View */
|
||||||
@ -395,58 +395,58 @@ hr {
|
|||||||
#infolog-index_filter {width: 50% !important;}
|
#infolog-index_filter {width: 50% !important;}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Select -> Option
|
// Select -> Option
|
||||||
.nextmatch_header > .filters > select > option {font-size: 0.9em;}
|
.nextmatch_header > .filters > select > option {font-size: 0.9em;}
|
||||||
|
|
||||||
|
|
||||||
// Search Field
|
// Search Field
|
||||||
.nextmatch_header > .search{
|
.nextmatch_header > .search{
|
||||||
|
|
||||||
padding: 0 0 0 3px;
|
padding: 0 0 0 3px;
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
|
|
||||||
.background_color_search;
|
.background_color_search;
|
||||||
.border_radius_button_righttop;
|
.border_radius_button_righttop;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
/*.background_color_search;*/
|
/*.background_color_search;*/
|
||||||
/*background-color: @gray_0;*/
|
/*background-color: @gray_0;*/
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #000;
|
color: #000;
|
||||||
|
|
||||||
/*margin: 0 2px;*/
|
/*margin: 0 2px;*/
|
||||||
}
|
}
|
||||||
input::-webkit-input-placeholder {
|
input::-webkit-input-placeholder {
|
||||||
/* WebKit browsers */
|
/* WebKit browsers */
|
||||||
color: @gray_60;
|
color: @gray_60;
|
||||||
}
|
}
|
||||||
input:-moz-placeholder {
|
input:-moz-placeholder {
|
||||||
/* Mozilla Firefox 4 to 18 */
|
/* Mozilla Firefox 4 to 18 */
|
||||||
color: @gray_60;
|
color: @gray_60;
|
||||||
}
|
}
|
||||||
input::-moz-placeholder {
|
input::-moz-placeholder {
|
||||||
/* Mozilla Firefox 19+ */
|
/* Mozilla Firefox 19+ */
|
||||||
color: @gray_60;
|
color: @gray_60;
|
||||||
}
|
}
|
||||||
input:-ms-input-placeholder {
|
input:-ms-input-placeholder {
|
||||||
/* Internet Explorer 10+ */
|
/* Internet Explorer 10+ */
|
||||||
color: @gray_60;
|
color: @gray_60;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.et2_button {
|
button.et2_button {
|
||||||
.border_normal;
|
.border_normal;
|
||||||
|
|
||||||
border-color: @gray_30;
|
border-color: @gray_30;
|
||||||
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
||||||
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
||||||
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
|
||||||
|
|
||||||
width: 45px;
|
width: 45px;
|
||||||
/*height: 1.6em;*/
|
/*height: 1.6em;*/
|
||||||
|
|
||||||
@ -487,7 +487,7 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Input Field
|
// Input Field
|
||||||
@ -502,7 +502,7 @@ hr {
|
|||||||
|
|
||||||
|
|
||||||
.nextmatch_header .et2_button_icon {
|
.nextmatch_header .et2_button_icon {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Export Button
|
// Export Button
|
||||||
@ -516,7 +516,7 @@ hr {
|
|||||||
|
|
||||||
&:hover{.Complete_Button_Icon_hover ;}
|
&:hover{.Complete_Button_Icon_hover ;}
|
||||||
&:active{.Complete_Button_Icon_active ;}
|
&:active{.Complete_Button_Icon_active ;}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -545,24 +545,24 @@ hr {
|
|||||||
|
|
||||||
/*ADD Button*/
|
/*ADD Button*/
|
||||||
#admin-categories-index_add {
|
#admin-categories-index_add {
|
||||||
|
|
||||||
.dimension_width_height_l;
|
.dimension_width_height_l;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||||
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: "+";
|
content: "+";
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
color: @egw_color_1;
|
color: @egw_color_1;
|
||||||
line-height: 0.6em;
|
line-height: 0.6em;
|
||||||
padding-left: 0.1em;
|
padding-left: 0.1em;
|
||||||
padding-right: 4em;
|
padding-right: 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {.Complete_Button_add_hover};
|
&:hover {.Complete_Button_add_hover};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#admin-categories-index_filter {top: 8px;}
|
#admin-categories-index_filter {top: 8px;}
|
||||||
@ -607,14 +607,14 @@ hr {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*left Button*/
|
/*left Button*/
|
||||||
button.ui-corner-left,
|
button.ui-corner-left,
|
||||||
button.ui-state-default{
|
button.ui-state-default{
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
background-repeat: no-repeat !important;
|
background-repeat: no-repeat !important;
|
||||||
// background-size: 10px 10px;
|
// background-size: 10px 10px;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
.dimension_width_height_s;
|
.dimension_width_height_s;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@ -622,17 +622,17 @@ hr {
|
|||||||
right: 1px;
|
right: 1px;
|
||||||
top: 3px;
|
top: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*right Button*/
|
/*right Button*/
|
||||||
button.ui-corner-right {
|
button.ui-corner-right {
|
||||||
// background-image: url("../images/fav_filter_normal.png");
|
// background-image: url("../images/fav_filter_normal.png");
|
||||||
// background-repeat: no-repeat !important;
|
// background-repeat: no-repeat !important;
|
||||||
// background-size: 10px 10px;
|
// background-size: 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* hover */
|
/* hover */
|
||||||
button.ui-state-hover {
|
button.ui-state-hover {
|
||||||
background-color: @gray_30 !important;
|
background-color: @gray_30 !important;
|
||||||
@ -641,13 +641,13 @@ hr {
|
|||||||
background-size: 16px 16px !important;
|
background-size: 16px 16px !important;
|
||||||
background-position: 10px center !important;
|
background-position: 10px center !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.ui-state-hover > img {
|
button.ui-state-hover > img {
|
||||||
// position: absolute;
|
// position: absolute;
|
||||||
// top: 70000px;
|
// top: 70000px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} // dropdown
|
} // dropdown
|
||||||
@ -678,7 +678,7 @@ hr {
|
|||||||
input {margin-right: 1ex;}
|
input {margin-right: 1ex;}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
margin-right: 1ex;
|
margin-right: 1ex;
|
||||||
.dimension_width_height_s;
|
.dimension_width_height_s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -688,7 +688,7 @@ hr {
|
|||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// List Icon
|
// List Icon
|
||||||
.sideboxstar{
|
.sideboxstar{
|
||||||
background-image: url("../images/bullet.png");
|
background-image: url("../images/bullet.png");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
@ -703,7 +703,7 @@ hr {
|
|||||||
|
|
||||||
|
|
||||||
.sidebox-favorites {
|
.sidebox-favorites {
|
||||||
|
|
||||||
ul.favorites {
|
ul.favorites {
|
||||||
width: 99%;
|
width: 99%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
@ -712,13 +712,13 @@ hr {
|
|||||||
|
|
||||||
li {
|
li {
|
||||||
|
|
||||||
padding-left: 1em !important;
|
padding-left: 1em !important;
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
line-height: 2em;
|
line-height: 2em;
|
||||||
|
|
||||||
|
|
||||||
img {
|
img {
|
||||||
// margin-right: 1ex;
|
// margin-right: 1ex;
|
||||||
margin: 0px 5px;
|
margin: 0px 5px;
|
||||||
.dimension_height_s;
|
.dimension_height_s;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
@ -726,21 +726,21 @@ hr {
|
|||||||
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
.dimension_height_s;
|
.dimension_height_s;
|
||||||
/*.Complete_Button_Icon_hover ;*/
|
/*.Complete_Button_Icon_hover ;*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img.sideboxstar {
|
img.sideboxstar {
|
||||||
margin-right: 1ex;
|
margin-right: 1ex;
|
||||||
.dimension_height_s;
|
.dimension_height_s;
|
||||||
.Complete_Button_Icon_normal;
|
.Complete_Button_Icon_normal;
|
||||||
background-size: 16px 16px;
|
background-size: 16px 16px;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
&:hover {.dimension_height_s; .Complete_Button_Icon_hover ;}
|
&:hover {.dimension_height_s; .Complete_Button_Icon_hover ;}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
div.sideboxstar {display: none;}
|
div.sideboxstar {display: none;}
|
||||||
div.ui-icon-trash{
|
div.ui-icon-trash{
|
||||||
@ -748,7 +748,7 @@ hr {
|
|||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -763,7 +763,7 @@ hr {
|
|||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
.color_100_gray;
|
.color_100_gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-menu-icons {
|
.ui-menu-icons {
|
||||||
.ui-menu-item {
|
.ui-menu-item {
|
||||||
@ -783,9 +783,9 @@ hr {
|
|||||||
.ui-menu {
|
.ui-menu {
|
||||||
/*li*/
|
/*li*/
|
||||||
.ui-menu-item {
|
.ui-menu-item {
|
||||||
|
|
||||||
width: 93%;
|
width: 93%;
|
||||||
|
|
||||||
&:hover {background-color: @egw_color_1_e;}
|
&:hover {background-color: @egw_color_1_e;}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@ -793,7 +793,7 @@ hr {
|
|||||||
padding: 2px 0px;
|
padding: 2px 0px;
|
||||||
padding-left: 5px !important;
|
padding-left: 5px !important;
|
||||||
|
|
||||||
&:hover {text-decoration: underline;
|
&:hover {text-decoration: underline;
|
||||||
/*.Complete_Button_Icon_hover ;*/
|
/*.Complete_Button_Icon_hover ;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -812,7 +812,7 @@ hr {
|
|||||||
display:inline-block;
|
display:inline-block;
|
||||||
margin: -3px 1px 0px 1px;
|
margin: -3px 1px 0px 1px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
div.ui-icon-trash{
|
div.ui-icon-trash{
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
@ -881,38 +881,38 @@ textarea.description {
|
|||||||
/*#################################### ADMIN PART #####################################################*/
|
/*#################################### ADMIN PART #####################################################*/
|
||||||
|
|
||||||
iframe#admin-index_iframe{
|
iframe#admin-index_iframe{
|
||||||
|
|
||||||
background-color: yellow;
|
background-color: yellow;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Content Iframe
|
// Content Iframe
|
||||||
#admin-categories-index{
|
#admin-categories-index{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
div.egwGridView_scrollarea { min-height: 500px;}
|
div.egwGridView_scrollarea { min-height: 500px;}
|
||||||
|
|
||||||
|
|
||||||
table.et2_grid {
|
table.et2_grid {
|
||||||
|
|
||||||
#admin-categories-index_nm {
|
#admin-categories-index_nm {
|
||||||
|
|
||||||
div.egwGridView_outer{
|
div.egwGridView_outer{
|
||||||
|
|
||||||
td.frame {
|
td.frame {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*#################################### ADMIN PART #####################################################*/
|
/*#################################### ADMIN PART #####################################################*/
|
||||||
@ -925,8 +925,8 @@ iframe#admin-index_iframe{
|
|||||||
|
|
||||||
@media only screen and (min-width: 980px) and (max-width: 1279px) {
|
@media only screen and (min-width: 980px) and (max-width: 1279px) {
|
||||||
|
|
||||||
.nextmatch_header > .filters select { margin: 0px;}
|
.nextmatch_header > .filters select { margin: 0px;}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 760px) and (max-width: 979px) {
|
@media only screen and (min-width: 760px) and (max-width: 979px) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user