forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
89 lines (89 loc) · 1.78 KB
/
Copy pathstyles.ts
File metadata and controls
89 lines (89 loc) · 1.78 KB
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
/**
* Contains CSS styles for the Sharing pane,
* see https://github.com/solid/userguide/blob/master/views/sharing/userguide.md
* @packageDocumentation
*/
export const styles = {
aclControlBoxContainer: {
margin: '1em'
},
aclControlBoxHeader: {
fontSize: '120%',
margin: '0 0 1rem'
},
aclControlBoxStatus: {
display: 'none',
margin: '1rem 0'
},
aclControlBoxStatusRevealed: {
display: 'block'
},
aclGroupContent: {
maxWidth: 650
},
accessGroupList: {
display: 'grid',
gridTemplateColumns: '1fr',
margin: '1em',
width: '100%'
},
accessGroupListItem: {
display: 'grid',
gridTemplateColumns: '100px auto 30%'
},
defaultsController: {
display: 'flex'
},
defaultsControllerNotice: {
color: '#888',
flexGrow: 1,
fontSize: '80%'
},
bigButton: {
backgroundColor: 'white',
border: '0.1em solid #888',
borderRadius: '0.3em',
maxWidth: '50%',
paddingBottom: '1em',
paddingTop: '1em'
},
group: {
color: '#888'
},
'group-1': {
color: 'green'
},
'group-2': {
color: '#cc0'
},
'group-3': {
color: 'orange'
},
'group-5': {
color: 'red'
},
'group-9': {
color: 'blue'
},
'group-13': {
color: 'purple'
},
trustedAppAddApplicationsTable: {
backgroundColor: '#eee'
},
trustedAppCancelButton: {
float: 'right' as 'right' // @@ a little hack - https://stackoverflow.com/questions/52781251/using-typescript-jss-with-react-throws-type-is-unassignable-for-some-css-prop
},
trustedAppControllerI: {
borderColor: 'orange',
borderRadius: '1em',
borderWidth: '0.1em'
},
temporaryStatusInit: {
background: 'green'
},
temporaryStatusEnd: {
background: 'transparent',
transition: 'background 5s linear'
}
}