mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Mobile theme W.I.P.:
- Fix couple of glitches for AB - Give a default color to cat color column
This commit is contained in:
parent
18a7c47b95
commit
f818d0ec08
@ -36,7 +36,7 @@
|
|||||||
<vbox class="addressbookCol2">
|
<vbox class="addressbookCol2">
|
||||||
<hbox>
|
<hbox>
|
||||||
<image src="email.png"/>
|
<image src="email.png"/>
|
||||||
<url-email id="${row}[email]" readonly="true" class="telNumbers"/>
|
<url-email id="${row}[email]" height="15" readonly="true" class="telNumbers"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
<hbox>
|
<hbox>
|
||||||
<image src="phone.png"/>
|
<image src="phone.png"/>
|
||||||
|
@ -530,19 +530,17 @@ input.et2_radiobox {
|
|||||||
}
|
}
|
||||||
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='email]'] {
|
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='email]'] {
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
padding-left: 4px;
|
padding-left: 3px;
|
||||||
padding-bottom: 2px;
|
|
||||||
display: inline;
|
display: inline;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
padding-bottom: 5px;
|
color: #26537c;
|
||||||
color: #2C6398;
|
|
||||||
}
|
}
|
||||||
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='tel_cell]'],
|
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='tel_cell]'],
|
||||||
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='tel_work]'] {
|
#addressbook-index table.egwGridView_outer tbody a[id^='addressbook-index_'][id$='tel_work]'] {
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
display: inline-block;
|
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
|
display: inline;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -440,20 +440,18 @@ div.addressbook_edit_general_picture img {
|
|||||||
}
|
}
|
||||||
a[id^='addressbook-index_'][id$='email]']{
|
a[id^='addressbook-index_'][id$='email]']{
|
||||||
.mob-fontsize-s;
|
.mob-fontsize-s;
|
||||||
padding-left: 4px;
|
padding-left: 3px;
|
||||||
padding-bottom:2px;
|
|
||||||
display: inline;
|
display: inline;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
padding-bottom: 5px;
|
color: #26537c;
|
||||||
color: #2C6398;
|
|
||||||
}
|
}
|
||||||
a[id^='addressbook-index_'][id$='tel_cell]'],
|
a[id^='addressbook-index_'][id$='tel_cell]'],
|
||||||
a[id^='addressbook-index_'][id$='tel_work]']
|
a[id^='addressbook-index_'][id$='tel_work]']
|
||||||
{
|
{
|
||||||
.mob-fontsize-s;
|
.mob-fontsize-s;
|
||||||
display: inline-block;
|
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
|
display: inline;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -6705,6 +6705,9 @@ span.egw_tutorial_title {
|
|||||||
width: 10px;
|
width: 10px;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
body table.egwGridView_outer tbody tr td span.cat_.mobile_cat_col {
|
||||||
|
background: #F5F5F5;
|
||||||
|
}
|
||||||
#egw_fw_basecontainer {
|
#egw_fw_basecontainer {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
@ -7748,6 +7751,9 @@ span.egw_tutorial_title {
|
|||||||
body .et2_nextmatch .egwGridView_outer thead tr th {
|
body .et2_nextmatch .egwGridView_outer thead tr th {
|
||||||
font-size: large;
|
font-size: large;
|
||||||
}
|
}
|
||||||
|
body .et2_nextmatch .egwGridView_outer td img {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
body .dtree img {
|
body .dtree img {
|
||||||
width: 24px !important;
|
width: 24px !important;
|
||||||
height: 24px !important;
|
height: 24px !important;
|
||||||
|
@ -137,6 +137,10 @@
|
|||||||
top:0;
|
top:0;
|
||||||
width:10px;
|
width:10px;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
}
|
||||||
|
span.cat_.mobile_cat_col {
|
||||||
|
background: #F5F5F5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1296,6 +1300,11 @@
|
|||||||
thead tr th {
|
thead tr th {
|
||||||
font-size: large;
|
font-size: large;
|
||||||
}
|
}
|
||||||
|
td {
|
||||||
|
img{
|
||||||
|
border:none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user