update some styles

update some styles
This commit is contained in:
梁灏 2017-01-04 14:55:16 +08:00
parent 73d10c280b
commit ba3e34e087
7 changed files with 96 additions and 10 deletions

View file

@ -5,6 +5,7 @@
.@{date-picker-prefix-cls} {
position: relative;
line-height: normal;
.@{select-dropdown-prefix-cls} {
width: auto;
padding: 0;

View file

@ -35,7 +35,7 @@
.clearfix();
&-content {
position: relative;
//line-height: 32px;
line-height: 32px;
font-size: @font-size-small;
}

View file

@ -10,6 +10,7 @@
color: @text-color;
font-size: @font-size-base;
position: relative;
line-height: normal;
&-selection {
display: block;
@ -123,10 +124,11 @@
height: @input-height-base - 2px;
line-height: @input-height-base - 2px;
color: @input-placeholder-color;
font-size: @font-size-small;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-left: 8px;
padding-left: 4px;
padding-right: 22px;
}
}
@ -164,7 +166,7 @@
&-multiple &-input{
height: @input-height-base - 3px;
line-height: @input-height-base;
padding: 0 0 0 6px;
padding: 0 0 0 4px;
}
&-not-found{

View file

@ -1,6 +1,7 @@
@slider-prefix-cls: ~"@{css-prefix}slider";
.@{slider-prefix-cls} {
line-height: normal;
&-wrap{
width: 100%;
height: @slider-height;

View file

@ -146,9 +146,7 @@
cursor: pointer;
font-size: @font-size-small;
display: inline-block;
& + & {
margin-left: 8px;
}
margin-right: 8px;
&-disabled{
cursor: @cursor-disabled;
}

View file

@ -155,5 +155,5 @@
@slider-height : 4px;
@slider-margin : 16px 0;
@slider-button-wrap-size : 18px;
@slider-button-wrap-offset : -5px;
@slider-button-wrap-offset : -4px;
@slider-disabled-color : #ccc;

View file

@ -48,12 +48,98 @@
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
</Checkbox-group>
</form-item>
<form-item label="select" prop="select">
<i-select :model.sync="form.select" style="width:200px" clearable>
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
<i-select :model.sync="model11" filterable>
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
<i-select :model.sync="model12" filterable multiple>
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
</form-item>
<form-item label="select多选" prop="selectm">
<i-select :model.sync="form.selectm" multiple style="width:260px">
@ -64,12 +150,10 @@
<Slider :value.sync="form.slider" range></Slider>
</form-item>
<form-item label="日期" prop="date">
{{ form.date }}
<Time-picker :value.sync="form.date" type="time" placeholder="选择时间" style="width: 168px"></Time-picker>
</form-item>
<form-item label="两个日期" prop="date2">
{{ form.date2 | json}}
<Date-picker :value.sync="form.date2" type="daterange" placement="bottom-end" placeholder="选择日期" @on-change="c"></Date-picker>
<Date-picker :value.sync="form.date2" type="daterange" placement="bottom-start" placeholder="选择日期" @on-change="c"></Date-picker>
</form-item>
<form-item>
<i-button type="primary" @click="onSubmit('form')">提交</i-button>