forked from fanruan/fineui
guy
8 years ago
14 changed files with 153 additions and 21 deletions
@ -1,3 +1,27 @@ |
|||||||
.demo-main .bg1 { |
.demo-main .bg1 { |
||||||
background-color: #178cdf; |
background-color: #178cdf; |
||||||
} |
} |
||||||
|
.demo-north { |
||||||
|
background-color: #3c8dbc; |
||||||
|
} |
||||||
|
.demo-west { |
||||||
|
background-color: #222d32; |
||||||
|
} |
||||||
|
.demo-main .bg1 { |
||||||
|
background-color: #178cdf; |
||||||
|
} |
||||||
|
.demo-north { |
||||||
|
background-color: #3c8dbc; |
||||||
|
} |
||||||
|
.demo-west { |
||||||
|
background-color: #222d32; |
||||||
|
} |
||||||
|
.demo-main .bg1 { |
||||||
|
background-color: #178cdf; |
||||||
|
} |
||||||
|
.demo-north { |
||||||
|
background-color: #3c8dbc; |
||||||
|
} |
||||||
|
.demo-west { |
||||||
|
background-color: #222d32; |
||||||
|
} |
||||||
|
@ -0,0 +1,9 @@ |
|||||||
|
Demo.Center = BI.inherit(BI.Widget, { |
||||||
|
props: { |
||||||
|
baseCls: "demo-center" |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
$.shortcut("demo.center", Demo.Center); |
@ -0,0 +1,9 @@ |
|||||||
|
Demo.North = BI.inherit(BI.Widget, { |
||||||
|
props: { |
||||||
|
baseCls: "demo-north" |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
$.shortcut("demo.north", Demo.North); |
@ -0,0 +1,9 @@ |
|||||||
|
Demo.West = BI.inherit(BI.Widget, { |
||||||
|
props: { |
||||||
|
baseCls: "demo-west" |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
$.shortcut("demo.west", Demo.West); |
Loading…
Reference in new issue