forked from pieter-groeneweg/ATUM-user.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.css
More file actions
87 lines (83 loc) · 1.93 KB
/
user.css
File metadata and controls
87 lines (83 loc) · 1.93 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
/* change of some background-colors to enhance ui/ux */
/*get rid of pyamas blue*/
#wrapper {
background-color: var(--white);
}
/* have author at least see where to put the title when authoring some content..*/
.title-alias label {
font-weight: bold;
}
#jform_title {
font-weight: 800;
}
/*do something about the space consumption of options and settings..*/
.control-group {
margin: 0 0 0.1rem;
}
.options-form {
margin-bottom: 0.1rem;
padding: 1vw 1vw;
}
legend {
margin-bottom: 0rem;
}
/*bring back options list logic by having these in one column.*/
.column-count-md-2, .column-count-lg-3 {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
.custom-select {
max-width: 400px;
}
[class*=" column-"]>div, [class^=column-]>div {
display: flex;
flex-direction: row;
}
[class*=" column-"]>div .control-label, [class^=column-]>div .control-label {
width: 240px;
}
/* zoom the lot to not go entirely nuts on DUPLO blocks */
@media (min-width:992px) {
/* zoom the lot to not go entirely nuts on DUPLO blocks */
html {
transform: scale(0.8);
transform-origin: 0 0;
width: 125%;
}
/* correct mouse pointer mayhem in the code editor in "templates" - do not touch other forms hence the complex set of selectors*/
.com_templates.view-template section#editor fieldset.options-form {
transform: scale(1.25);
transform-origin: 0 0;
width: 80%;
}
/*modules list*/
.new-modules .card-columns {
grid-template-columns: 1fr;
}
.new-modules .card {
flex-direction: row;
}
.new-modules .card :nth-child(1) {
order: 1;
}
.new-modules .card :nth-child(2) {
order: 3;
}
.new-modules .card :nth-child(3) {
order: 2;
}
.new-modules .card .btn {
width: auto;
}
.new-modules .card div {
flex-basis: 20%;
}
.new-modules .card, .new-modules .card:hover {
box-shadow: none !important;
margin-bottom: 0 !important;
}
.btn-primary {
border-color: var(--atum-text-light);
}
}