-
Notifications
You must be signed in to change notification settings - Fork 1
/
contentScript.css
114 lines (93 loc) · 2.28 KB
/
contentScript.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
.purchase-details-card {
position: fixed;
top: 16px;
right: 16px;
z-index: 9999;
}
.purchase-details-card, .purchase-details-card * {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 18px;
box-sizing: border-box;
}
.purchase-details-card .purchase-details-wrapper {
position: relative;
width: 340px;
min-height: 140px;
padding: 16px;
background: #FFFFFF 0 0 no-repeat padding-box;
box-shadow: 0 3px 6px #7CB34226;
border-radius: 4px;
}
.purchase-details-card .purchase-center_align {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.purchase-details-card .purchase-hcenter_align {
display: flex;
justify-content: center;
flex-direction: column;
height: 100%;
}
.purchase-details-card .purchase-flexgrow_max {
flex-grow: 1;
overflow: hidden;
}
.purchase-details-card .purchase-details-container {
font-size: 14px;
}
.purchase-details-card .purchased-item-details {
margin-bottom: 12px;
}
.purchase-details-card .purchase-clear {
clear: both;
}
.purchase-details-card .purchased-item-details {
display: flex;
flex-direction: row;
}
.purchase-details-card .purchased-item-icon_preview img {
height: 40px;
min-width: 40px;
width: 40px;
}
.purchase-details-card .truncate {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.purchase-details-card .font-color-primary {
color: #003750;
font-weight: 600;
}
.purchase-details-card .font-color-secondary {
color: rgba(0, 55, 80, 0.5);
}
.purchase-details-card .font-color-active {
color: #7CB342;
font-weight: 600;
}
.purchase-details-card .font-color-expired {
color: #EBD50D;
font-weight: 600;
}
.purchase-details-card .purchase-font-italic {
font-style: italic;
}
.purchase-details-card .purchased-item-name-id {
padding-left: 4px;
}
.purchase-details-card .purchased-item-name {
font-size: 15px;
font-weight: 600;
}
.purchase-details-card .purchased-item-support_until {
margin-top: 2px;
}
.purchase-details-card .purchase-invalid {
font-size: 14px;
font-weight: bold;
color: #C82929;
}