aboutsummaryrefslogtreecommitdiffstats
path: root/public/less
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2019-02-11 07:13:30 +0100
committertechknowlogick <matti@mdranta.net>2019-02-11 01:13:30 -0500
commit353282e65880147408382ac4a44473272af53101 (patch)
tree80870b4b158170fc57fc01c7c2725241e14405cf /public/less
parentd0cb5aa9f95888a97a6f4ac39769893da8a0cbaf (diff)
downloadgitea-353282e65880147408382ac4a44473272af53101.tar.gz
gitea-353282e65880147408382ac4a44473272af53101.zip
Add autoprefixer to css build (#6029)
* Add autoprefixer to css build * also use autoprefixer on theme files
Diffstat (limited to 'public/less')
-rw-r--r--public/less/_base.less9
-rw-r--r--public/less/_form.less2
-rw-r--r--public/less/_repository.less7
3 files changed, 0 insertions, 18 deletions
diff --git a/public/less/_base.less b/public/less/_base.less
index 1e6c07f116..e435d942b7 100644
--- a/public/less/_base.less
+++ b/public/less/_base.less
@@ -42,9 +42,6 @@ pre > code {
word-break: break-all;
/* Adds a hyphen where the word breaks, if supported (No Blink) */
- -ms-hyphens: auto;
- -moz-hyphens: auto;
- -webkit-hyphens: auto;
hyphens: auto;
}
.full.height {
@@ -118,10 +115,7 @@ pre > code {
// no, stackable won't work on right menus.
margin-left: auto;
display: flex;
- display: -ms-flexbox;
- -ms-flex-align: inherit;
align-items: inherit;
- -ms-flex-direction: inherit;
flex-direction: inherit;
}
@@ -134,9 +128,6 @@ pre > code {
}
&.button, &.menu .item {
- -moz-user-select: auto;
- -ms-user-select: auto;
- -webkit-user-select: auto;
user-select: auto;
}
diff --git a/public/less/_form.less b/public/less/_form.less
index 9b9b7879b4..bdbea7a620 100644
--- a/public/less/_form.less
+++ b/public/less/_form.less
@@ -91,9 +91,7 @@
@media screen and (max-height: 575px){
#rc-imageselect, .g-recaptcha {
transform:scale(0.77);
- -webkit-transform:scale(0.77);
transform-origin:0 0;
- -webkit-transform-origin:0 0;
}
}
diff --git a/public/less/_repository.less b/public/less/_repository.less
index 18f5000951..ea9df9687c 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -344,9 +344,6 @@
color: #999;
background: #f5f5f5;
width: 1%;
- -moz-user-select: none;
- -ms-user-select: none;
- -webkit-user-select: none;
user-select: none;
span {
@@ -1054,9 +1051,6 @@
color: #A7A7A7;
background: #fafafa;
width: 1%;
- -moz-user-select: none;
- -ms-user-select: none;
- -webkit-user-select: none;
user-select: none;
vertical-align: top;
@@ -1795,7 +1789,6 @@
.generate-tab-size(@n, @i: 1) when (@i =< @n) {
.tab-size-@{i} {
tab-size: @i !important;
- -moz-tab-size: @i !important;
}
.generate-tab-size(@n, (@i + 1));
}