Browse Source

Fixed missing semicolons in less

master
Caleb James DeLisle 3 years ago
parent
commit
bfba239770
4 changed files with 3 additions and 4 deletions
  1. 1
      .lesshintrc
  2. 2
      customize.dist/src/less2/include/font.less
  3. 2
      customize.dist/src/less2/pages/page-index.less
  4. 2
      customize.dist/src/less2/pages/page-what-is-cryptpad.less

1
.lesshintrc

@ -28,6 +28,5 @@
// These rules are really good rules to have around IMO (Caleb) but they're not being honored.
"duplicateProperty": false,
"trailingSemicolon": false,
"maxCharPerLine": false
}

2
customize.dist/src/less2/include/font.less

@ -1,7 +1,7 @@
.font_neuropolitical () {
@font-face {
font-family: Neuropolitical;
src: url(/customize/fonts/neuropolitical.ttf)
src: url("/customize/fonts/neuropolitical.ttf");
}
}
.font_open-sans () {

2
customize.dist/src/less2/pages/page-index.less

@ -93,7 +93,7 @@ body {
}
@callout-padding: 15px;
a:hover {
text-decoration: none
text-decoration: none;
}
.bs-callout {
display: flex;

2
customize.dist/src/less2/pages/page-what-is-cryptpad.less

@ -28,7 +28,7 @@
color: @cryptpad_header_col;
}
p {
color: @cryptpad_text_col
color: @cryptpad_text_col;
}
#zeroknowledge {
width: 65%;

Loading…
Cancel
Save