mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Fix filter-categories in mobile template
This commit is contained in:
parent
943ae3612e
commit
81829c2496
@ -2699,7 +2699,7 @@ tr.dialogHeader2 td {padding-top:15px;}
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*et2_selectbox select-cat chosen (cats selectbox with colors) */
|
/*et2_selectbox select-cat chosen (cats selectbox with colors) */
|
||||||
.nextmatch_header_row .et2_selectbox.select-cat .chzn-single
|
.nextmatch_header_row chzn-container.et2_selectbox.select-cat .chzn-single
|
||||||
{
|
{
|
||||||
border: none;
|
border: none;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
@ -2710,7 +2710,7 @@ tr.dialogHeader2 td {padding-top:15px;}
|
|||||||
height: 22px;
|
height: 22px;
|
||||||
border-left: 6px solid transparent;
|
border-left: 6px solid transparent;
|
||||||
}
|
}
|
||||||
.nextmatch_header_row .et2_selectbox.select-cat
|
.nextmatch_header_row .chzn-container.et2_selectbox.select-cat
|
||||||
{
|
{
|
||||||
padding-right: 3px !important;
|
padding-right: 3px !important;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
|
@ -7416,6 +7416,44 @@ form[id^="tracker-"] .dialogHeadbar {
|
|||||||
height: 50px;
|
height: 50px;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat {
|
||||||
|
height: 50px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 0px;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat a.chzn-single,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat a.chzn-single {
|
||||||
|
height: 100%;
|
||||||
|
border-right: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background: white;
|
||||||
|
border-top: none;
|
||||||
|
border-bottom: none;
|
||||||
|
border-left-width: 10px;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat a.chzn-single span,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat a.chzn-single span {
|
||||||
|
height: 100%;
|
||||||
|
line-height: 46px;
|
||||||
|
color: #26537C;
|
||||||
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat a.chzn-single div,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat a.chzn-single div {
|
||||||
|
width: 40px;
|
||||||
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat a.chzn-single div b,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat a.chzn-single div b {
|
||||||
|
background: white url(../images/selectarrowdown.png) no-repeat center !important;
|
||||||
|
background-size: 32px !important;
|
||||||
|
}
|
||||||
|
body .et2_nextmatch .nextmatch_header_row .chzn-container.et2_selectbox.select-cat div.chzn-drop,
|
||||||
|
body .et2_nextmatch .nextmatch_header .chzn-container.et2_selectbox.select-cat div.chzn-drop {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
body .et2_nextmatch .nextmatch_header.nm_header_hide {
|
body .et2_nextmatch .nextmatch_header.nm_header_hide {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
@ -544,6 +544,42 @@
|
|||||||
.mob-fontsize-l;
|
.mob-fontsize-l;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chzn-container.et2_selectbox.select-cat {
|
||||||
|
height: 50px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 0px;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chzn-container.et2_selectbox.select-cat {
|
||||||
|
a.chzn-single {
|
||||||
|
height: 100%;
|
||||||
|
border-right: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background: white;
|
||||||
|
border-top: none;
|
||||||
|
border-bottom: none;
|
||||||
|
border-left-width: 10px;
|
||||||
|
border-radius: 0;
|
||||||
|
span {
|
||||||
|
height: 100%;
|
||||||
|
line-height: 46px;
|
||||||
|
color: #26537C;
|
||||||
|
}
|
||||||
|
div {
|
||||||
|
width: 40px;
|
||||||
|
b {
|
||||||
|
background: white url(../images/selectarrowdown.png) no-repeat center !important;
|
||||||
|
background-size: 32px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
div.chzn-drop {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.nextmatch_header.nm_header_hide {
|
.nextmatch_header.nm_header_hide {
|
||||||
display:none !important;
|
display:none !important;
|
||||||
|
Loading…
Reference in New Issue
Block a user