lookitui 0.1.2.beta → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +0,0 @@
1
- @charset "utf-8";
2
- /**
3
- * --------------------------------------------------------------------------
4
- * ++ tab区块基本样式 STYLE
5
- *
6
- * -------------------------------------------------------------------------
7
- */
8
- .ui-tab-nav{
9
- @include display-box();
10
- li{@include box-flex(1); border-bottom:1px solid #e8e8e8;}
11
- li a{display:block; height:40px; line-height:40px; text-align:center;}
12
- .ui-tab-nav-active a{border-bottom:2px solid #ffa200;}
13
- }
14
-
15
- .ui-tab-content{
16
- .ui-tab-panel{padding:10px;}
17
- }
@@ -1,79 +0,0 @@
1
- @charset "utf-8";
2
- /**
3
- * --------------------------------------------------------------------------
4
- * ++ toolbar组件+基本样式 STYLE
5
- *
6
- * -------------------------------------------------------------------------
7
- */
8
-
9
- @include fn-font-face('uxiconfont','../fonts/uxiconfont');
10
-
11
- .ui-toolbar {
12
- width:100%;
13
- z-index: 999
14
- }
15
-
16
- .ui-toolbar-wrap {
17
- height:40px; line-height:40px; background:#dedede;
18
- position: relative;
19
- }
20
-
21
- .ui-toolbar-placeholder {
22
- margin: 0;
23
- padding: 0;
24
- border: 0;
25
- overflow: visible;
26
- position: relative;
27
- }
28
-
29
- .ui-toolbar-title {
30
- height: 100%;
31
- text-align:center;
32
- }
33
-
34
- .ui-toolbar-left, .ui-toolbar-right {
35
- position: absolute;
36
- top:0;
37
- height: 100%;
38
- }
39
-
40
- .ui-toolbar-left {
41
- left: 0;
42
- }
43
- .ui-toolbar-right {
44
- top:0;
45
- right:0;
46
- }
47
- .ui-toolbar-left > * {
48
- display: inline-block;
49
- float: left;
50
- height:100%; width:100%;
51
- text-align: center;
52
- }
53
- .ui-toolbar-right > * {
54
- display: inline-block;
55
- float: right;
56
- height:100%; width:100%;
57
- text-align: center;
58
- }
59
-
60
- //橙色
61
- .ui-toolbar-bgorange{
62
- @include lg(top,#ef684e,#df5a3e); color:#fff;
63
- .ui-toolbar-left > *,.ui-toolbar-right > *{width:44px; font-family:'uxiconfont'; font-size:18*$px; color:#fff;}
64
- .ui-toolbar-title{@include text-shadow(0 1px 1px #d2d0d0);}
65
- }
66
-
67
- //黑色
68
- .ui-toolbar-bgblack{
69
- background:#3d3d3d; color:#fff;
70
- .ui-toolbar-left > *,.ui-toolbar-right > *{width:44px; font-family:'uxiconfont'; font-size:18*$px; color:#fff;}
71
- a:hover,a:active{background:#0D314F;}
72
- }
73
-
74
- //灰色
75
- .ui-toolbar-bggray{
76
- background:#F7F7F7; color:#111;
77
- .ui-toolbar-left > *,.ui-toolbar-right > *{width:44px; font-family:'uxiconfont'; font-size:18*$px; color:#ccc;}
78
- a:hover,a:active{background:#f2f2f2;}
79
- }