12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .demo-form {
- .el-select .el-input {
- width: 380px;
- }
- .el-form {
- width: 460px;
- }
- .line {
- text-align: center;
- }
- .el-checkbox-group {
- width: 320px;
- margin: 0;
- padding: 0;
- list-style: none;
- &:after,
- &:before {
- content: " ";
- display: table;
- }
- &:after {
- clear: both;
- visibility: hidden;
- font-size: 0;
- height: 0;
- }
- .el-checkbox {
- float: left;
- width: 160px;
- padding-right: 20px;
- margin: 0;
- padding: 0;
- + .el-checkbox {
- margin-left: 0;
- }
- }
- }
- .demo-form-normal {
- width: 460px;
- }
- .demo-form-inline {
- width: auto;
- .el-input {
- width: 150px;
- }
- > * {
- margin-right: 10px;
- }
- }
- .demo-ruleForm {
- width: 460px;
- .el-select .el-input {
- width: 360px;
- }
- }
- .demo-dynamic {
- .el-input {
- margin-right: 10px;
- width: 270px;
- vertical-align: top;
- }
- }
- .fr {
- float: right;
- }
- }
|