-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmmm-bring-list.css
117 lines (109 loc) · 2.18 KB
/
mmm-bring-list.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
*
* bringList
*
* Robert Seidt
* MIT Licensed.
*
* Custom here your css module
*
*/
.bringitemcontainer
{
width:96px;height:116px;float: left; margin-right:3px;margin-bottom:3px;
background: linear-gradient(135deg, rgba(102,102,102,1) 0%,rgba(102,102,102,0) 39%,rgba(102,102,102,0) 100%);
box-shadow: 1px 1px 2px 0px rgba(102,102,102,1);
}
.bringitemcontainer .bringitem{
width: calc(100% - 4px);
height: calc(100% - 4px);
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: distribute;
justify-content: space-around;
margin: 4px 2px 2px 2px;
text-align: center;
color: #f4f4f4;
-webkit-font-smoothing: antialiased;
}
.bringitemcontainer .itemupper{
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
height: 60px;
-ms-flex-align: end;
align-items: flex-end;
}
.bringitemcontainer .indicators-container
{
padding: 1px 0;
width: 14px;
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: start;
justify-content: flex-start;
}
.bringitemcontainer .image-container
{
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
height: 60px;
width: 65px;
min-width: 65px;
}
.bringitemcontainer .itemlower{
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
height: 43px;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: end;
justify-content: flex-end;
}
.bringitemcontainer .itemtext-name
{
display: block;
width: 90px;
min-height: 17px;
max-height: 27px;
padding-top: 2px;
margin: 0 auto;
font-size: 14px;
line-height: .95em;
overflow: hidden;
-webkit-line-clamp: 2;
text-overflow: ellipsis;
overflow-wrap: break-word;
}
.bringitemcontainer .itemtext-spec
{
height: 16px;
width: 90px;
font-size: 11px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-top: 1px;
line-height: .95em;
}
.bringitemcontainer .itemimage{
max-height:60px;max-width:50px;
}