Mobile theme W.I.P.:

-Fix infolog subject and id
This commit is contained in:
Hadi Nategh 2015-12-07 18:38:47 +00:00
parent 3dbd096054
commit 983ec4fad6
3 changed files with 38 additions and 29 deletions

View File

@ -40,8 +40,8 @@
<time_or_date id="${row}[info_enddate]" readonly="true" options=",8" class="$row_cont[end_class] infolog_fixedHeight"/> <time_or_date id="${row}[info_enddate]" readonly="true" options=",8" class="$row_cont[end_class] infolog_fixedHeight"/>
</hbox> </hbox>
<hbox class="infoSubRow"> <hbox class="infoSubRow">
<description id="${row}[info_subject]" no_lang="1" class="$row_cont[sub_class] et2_ellipsis" overflow="hidden" width="65%"/> <description id="${row}[info_subject]" no_lang="1" class="$row_cont[sub_class] et2_ellipsis" overflow="hidden" width="80%"/>
<listbox disabled="@no_info_owner_info_responsible" type="select-account" id="${row}[info_responsible]" readonly="true" width ="55%" rows="1" class="infoDetails"/> <listbox disabled="@no_info_owner_info_responsible" type="select-account" id="${row}[info_responsible]" readonly="true" width ="100%" rows="1" class="infoDetails"/>
</hbox> </hbox>
<box class="infoDescRow"> <box class="infoDescRow">
<description id="${row}[info_des]" no_lang="1" activate_links="1"/> <description id="${row}[info_des]" no_lang="1" activate_links="1"/>

View File

@ -414,39 +414,43 @@ button#infolog-edit_encrypt {
content: "#"; content: "#";
} }
span.infolog_infoId { span.infolog_infoId {
font-size: 10px; font-size: 8pt;
position: absolute; padding-top: 5px;
padding-top: 9px;
} }
div.infoDescRow { div.infoDescRow {
height: 50px; height: 45px;
font-size: 10px; font-size: 8pt;
max-width: 99%; max-width: 99%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
div.infoLinksRow { div.infoLinksRow,
font-size: 10px; div.infoLinksRow ul[id^='infolog-index_'][id$='filelinks]'] {
font-size: 8pt;
max-width: 99%; max-width: 99%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap !important;
} }
label[id^='infolog-index_'][id$='info_enddate]'], label[id^='infolog-index_'][id$='info_enddate]'],
label[id^='infolog-index_'][id$='info_startdate]'] { label[id^='infolog-index_'][id$='info_startdate]'] {
font-size: 10px; font-size: 8pt;
float: right; float: right;
} }
ul[id^='infolog-index_'][id$='info_responsible]'] > li { ul[id^='infolog-index_'][id$='info_responsible]'] > li {
float: right; font-size: 8pt;
font-size: 10px; text-align: right;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
padding-right: 8px;
} }
.infoSubRow:last-child { ul[id^='infolog-index_'][id$='filelinks]'] {
float: right; white-space: nowrap !important;
}
.infoSubRow span:last-child {
width: 20%;
} }
} }
/**/ /**/

View File

@ -13,7 +13,7 @@
*/ */
@import (reference) "../../../pixelegg/less/def_buttons.less"; @import (reference) "../../../pixelegg/less/def_buttons.less";
@import (reference) "../../../pixelegg/less/def_design_pattern_color_font_shadow.less"; @import (reference) "../../../pixelegg/less/def_mobile.less";
@import (less) "../default/app.css"; @import (less) "../default/app.css";
/* ############################################################################# /* #############################################################################
@ -407,38 +407,43 @@ button#infolog-edit_encrypt {
content:"#"; content:"#";
} }
span.infolog_infoId { span.infolog_infoId {
font-size: 10px; .mob-fontsize-s;
position: absolute; padding-top: 5px;
padding-top: 9px;
} }
div.infoDescRow { div.infoDescRow {
height:50px; height:45px;
font-size: 10px; .mob-fontsize-s;
max-width: 99%; max-width: 99%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
div.infoLinksRow { div.infoLinksRow, div.infoLinksRow ul[id^='infolog-index_'][id$='filelinks]'] {
font-size: 10px; .mob-fontsize-s;
max-width: 99%; max-width: 99%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap !important;
} }
label[id^='infolog-index_'][id$='info_enddate]'] , label[id^='infolog-index_'][id$='info_startdate]']{ label[id^='infolog-index_'][id$='info_enddate]'] , label[id^='infolog-index_'][id$='info_startdate]']{
font-size: 10px; .mob-fontsize-s;
float:right; float:right;
} }
ul[id^='infolog-index_'][id$='info_responsible]'] > li{ ul[id^='infolog-index_'][id$='info_responsible]'] > li{
float: right; .mob-fontsize-s;
font-size: 10px; text-align: right;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
padding-right: 8px;
} }
.infoSubRow:last-child { ul[id^='infolog-index_'][id$='filelinks]']
float:right; {
white-space: nowrap !important;
}
.infoSubRow span:last-child {
width:20%;
} }
} }