Browse Source

Enable stylelint's shorthand-property-no-redundant-values (#11436)

Enabled the rule and --fix'ed issues.

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
tags/v1.13.0-rc1
silverwind 3 years ago
parent
commit
9e0e2a9fcf
No account linked to committer's email address
5 changed files with 13 additions and 12 deletions
  1. 1
    0
      .stylelintrc
  2. 2
    2
      web_src/less/_base.less
  3. 1
    1
      web_src/less/_markdown.less
  4. 7
    7
      web_src/less/_repository.less
  5. 2
    2
      web_src/less/_review.less

+ 1
- 0
.stylelintrc View File

@@ -14,3 +14,4 @@ rules:
number-leading-zero: never
rule-empty-line-before: null
selector-pseudo-element-colon-notation: null
shorthand-property-no-redundant-values: true

+ 2
- 2
web_src/less/_base.less View File

@@ -323,7 +323,7 @@ code,
&.container {
&.fluid {
&.padded {
padding: 0 10px 0 10px;
padding: 0 10px;
}
}
}
@@ -582,7 +582,7 @@ code,
.sha.label {
font-family: @monospaced-fonts, monospace;
font-size: 13px;
padding: 6px 10px 4px 10px;
padding: 6px 10px 4px;
font-weight: normal;
margin: 0 6px;
}

+ 1
- 1
web_src/less/_markdown.less View File

@@ -9,7 +9,7 @@
}

&.file-view {
padding: 2em 2em 2em !important;
padding: 2em !important;
}

> *:first-child {

+ 7
- 7
web_src/less/_repository.less View File

@@ -426,12 +426,12 @@
}

img {
padding: 5px 5px 0 5px;
padding: 5px 5px 0;
}
}

.plain-text {
padding: 1em 2em 1em 2em;
padding: 1em 2em;

pre {
word-break: break-word;
@@ -1486,7 +1486,7 @@
height: 12px;
width: 40px;
display: inline-block;
margin: 2px 4px 0 4px;
margin: 2px 4px 0;
vertical-align: text-top;

.add {
@@ -1638,7 +1638,7 @@
&.file-content {
img {
max-width: 100%;
padding: 5px 5px 0 5px;
padding: 5px 5px 0;
}
img.emoji {
padding: 0;
@@ -2181,7 +2181,7 @@

> .item {
float: left;
padding: .5rem .5rem !important;
padding: .5rem !important;
font-size: 1.5em;
width: 45px;
left: 13px;
@@ -2498,7 +2498,7 @@
&:not(:first-child) {
border-top: 1px solid #eaeaea;
padding: 1rem;
margin: 15px -1rem -1rem -1rem;
margin: 15px -1rem -1rem;
}

> .svg {
@@ -2581,7 +2581,7 @@
.precolors {
padding-left: 0;
padding-right: 0;
margin: 3px 10px auto 10px;
margin: 3px 10px auto;
width: 120px;

.color {

+ 2
- 2
web_src/less/_review.less View File

@@ -75,7 +75,7 @@
.ui.active.tab {
border: 1px solid #d4d4d5;
padding: .5em;
border-radius: 0 .28571429rem .28571429rem .28571429rem;
border-radius: 0 .28571429rem .28571429rem;
}

.ui.active.markdown.tab {
@@ -93,7 +93,7 @@

.footer {
border-top: 1px solid #f1f1f1;
padding: 10px 0 10px 0;
padding: 10px 0;

.markdown-info {
display: inline-block;

Loading…
Cancel
Save