Allow class "new" to be applied to header text (#1753)
* Allow class "new" to be applied to header * Fix new line that didnt work * Fix misplaced brackets
Cette révision appartient à :
Parent
9b7af2d504
révision
603005ef9b
2 fichiers modifiés avec 12 ajouts et 3 suppressions
|
@ -23,6 +23,7 @@ All tested versions of Ubuntu fail to build, use a different OS or docker
|
|||
* Install [Golang](https://golang.org/doc/install) (version >=1.8)
|
||||
* `go get -u github.com/tools/godep`
|
||||
* `go get github.com/NyaaPantsu/nyaa`
|
||||
|
||||
On Windows, a specific version of GCC is used to build a specific depedency we use
|
||||
The GCC version packaged with [msys2](https://github.com/orlp/dev-on-windows/wiki/Installing-GCC--&-MSYS2) should work
|
||||
|
||||
|
|
|
@ -715,15 +715,23 @@ textarea {
|
|||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
#commit.new:after,#commit.wew:after {
|
||||
.new:after,.wew:after {
|
||||
content: "new";
|
||||
color: red;
|
||||
font-size: 10pt;
|
||||
font-size: 8pt;
|
||||
vertical-align: top;
|
||||
line-height: 5px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
#commit.wew:after { content: "wew"; }
|
||||
.wew:after {
|
||||
content: "wew";
|
||||
}
|
||||
#header .new:after, .header .wew:after {
|
||||
font-size: 7pt;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
|
|
Référencer dans un nouveau ticket