Projet

Général

Profil

0001-hautes-pyrenees-cd65-update-custom-styles-58976.patch

Thomas Noël, 25 novembre 2021 10:19

Télécharger (2,96 ko)

Voir les différences:

Subject: [PATCH] hautes-pyrenees-cd65: update custom styles (#58976)

 static/hautes-pyrenees-cd65/_custom.scss | 98 ++++++++++++++++++++++++
 1 file changed, 98 insertions(+)
static/hautes-pyrenees-cd65/_custom.scss
10 10
		display: block;
11 11
	}
12 12
}
13

  
14
div.cell.text-cell.h1title{
15
  background: #ffffff;
16
  background-color: #ffffff;
17
  border: none;
18
}
19

  
20
div.cell.text-cell.h1title > div > h1 {
21
  text-decoration: underline;
22
  text-decoration-color: #c9e0a9;
23
}
24

  
25
div.cell.text-cell.h1title > div > h1::before {
26
  content: "☶";
27
  padding-right: 0.7rem;
28
  display: inline;
29
  text-decoration: none;
30
}
31

  
32
div.cell.trackingcodeinputcell {
33
  background: #93c255;
34
  color: white;
35
}
36

  
37
div.links-list ul {
38
  background: #e4f0d5;
39
}
40
    
41
div.links-list ul > li > a {
42
 color: black;
43
 display: block;
44
}
45
    
46
div.h1 {
47
 background-color: green;
48
}
49
     
50
div.links-list ul > li > a::before  {
51
 content: "▸";
52
 color: black;
53
 font-family: fontawesome;
54
 padding-right: 5px;
55
 left: 1rem;
56
 display: inline-block;
57
 line-height: 1.7; 
58
}
59

  
60
.gru-content div.link-list-cell.has-asset-picture picture img,
61
.gru-content div.wcsformsofcategorycell.has-asset-picture picture img {
62
  max-width: 100%;
63
  display: block;
64
  padding: 0.5rem;
65
  margin-left: auto;
66
  margin-right: auto; }
67
  
68
.gru-content div.link-list-cell.has-asset-picture > div,
69
.gru-content div.wcsformsofcategorycell.has-asset-picture > div {
70
  display: flex;
71
  flex-direction: column;
72
}
73
.gru-content div.link-list-cell.has-asset-picture > div div,
74
.gru-content div.wcsformsofcategorycell.has-asset-picture > div div {
75
    order: 4;
76
}
77
  .gru-content div.link-list-cell.has-asset-picture > div div.intro,
78
  .gru-content div.wcsformsofcategorycell.has-asset-picture > div div.intro {
79
  order: 2;
80
}
81
.gru-content div.link-list-cell.has-asset-picture > div picture,
82
.gru-content div.wcsformsofcategorycell.has-asset-picture > div picture {
83
  order: 0;
84
}
85
.gru-content div.link-list-cell.has-asset-picture > div picture img,
86
.gru-content div.wcsformsofcategorycell.has-asset-picture > div picture img {
87
  border-radius: 0 0;
88
}
89
.gru-content div.link-list-cell.has-asset-picture > div > h2:first-child,
90
.gru-content div.wcsformsofcategorycell.has-asset-picture > div > h2:first-child {
91
  order: 1;
92
  border-radius: 0;
93
  background: #ffffff;
94
}
95

  
96
div.cell.foldable > div > h2:first-child::after {
97
  font-family: FontAwesome;
98
  content: "-";
99
  position: absolute;
100
  right: 1em;
101
}
102

  
103
div.cell.foldable.folded > div > h2:first-child::after {
104
  content: "+";
105
}
106
    
107
div.cell.trackingcodeinputcell {
108
  background: #93c255;
109
  color: white;
110
}
13
-