mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-02-21 17:32:47 +01:00
Visual improvements
This commit is contained in:
parent
52af4b6940
commit
61de95788c
Binary file not shown.
@ -567,7 +567,7 @@ namespace OS {
|
|||||||
* Scheme definition
|
* Scheme definition
|
||||||
*/
|
*/
|
||||||
CalendarDialog.scheme = `\
|
CalendarDialog.scheme = `\
|
||||||
<afx-app-window width='300' height='230' apptitle = "Calendar" >
|
<afx-app-window width='300' height='250' apptitle = "Calendar" >
|
||||||
<afx-vbox>
|
<afx-vbox>
|
||||||
<afx-hbox>
|
<afx-hbox>
|
||||||
<div data-width = "10" ></div>
|
<div data-width = "10" ></div>
|
||||||
|
@ -33,7 +33,17 @@ namespace OS {
|
|||||||
* @protected
|
* @protected
|
||||||
* @memberof LabelTag
|
* @memberof LabelTag
|
||||||
*/
|
*/
|
||||||
protected mount() {}
|
protected mount() {
|
||||||
|
$(this.refs.container)
|
||||||
|
.css("display", "flex")
|
||||||
|
.css("flex-direction", "row");
|
||||||
|
$(this.refs.iclass)
|
||||||
|
.css("flex-shrink",0);
|
||||||
|
$(this.refs.i)
|
||||||
|
.css("flex-shrink",0);
|
||||||
|
$(this.refs.text)
|
||||||
|
.css("flex",1);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Refresh the text in the label
|
* Refresh the text in the label
|
||||||
|
@ -4,4 +4,7 @@ afx-calendar-view afx-grid-view afx-grid-row:nth-child(even) afx-grid-cell
|
|||||||
}
|
}
|
||||||
afx-calendar-view afx-grid-view .grid_row_header afx-grid-cell{
|
afx-calendar-view afx-grid-view .grid_row_header afx-grid-cell{
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
|
}
|
||||||
|
afx-calendar-view afx-label {
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
@ -1,16 +1,12 @@
|
|||||||
afx-label i.icon-style {
|
afx-label i.icon-style {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
}
|
||||||
afx-label span {
|
afx-label span {
|
||||||
display: flex;
|
align-items: center;
|
||||||
flex-direction: row;
|
|
||||||
align-items:center;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
afx-label i.label-text{
|
afx-label i.label-text{
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
flex: 1;
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user