Browse Source

CP checkbox style fixes, version++

Vova Tkach 5 years ago
parent
commit
409c399381
5 changed files with 16 additions and 16 deletions
  1. 2 2
      Dockerfile
  2. 1 1
      Makefile
  3. 11 11
      assets/cp.styles.css
  4. 0 0
      assets/cp.styles.css.go
  5. 2 2
      consts/consts.go

+ 2 - 2
Dockerfile

@@ -2,8 +2,8 @@ FROM debian:latest
 
 
 ENV FAVE_HOST=0.0.0.0 FAVE_PORT=8080 FAVE_DIR=/app/hosts FAVE_DEBUG=false FAVE_KEEPALIVE=false
 ENV FAVE_HOST=0.0.0.0 FAVE_PORT=8080 FAVE_DIR=/app/hosts FAVE_DEBUG=false FAVE_KEEPALIVE=false
 
 
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.4/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.4/localhost.tar.gz /app/hosts/localhost.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.5/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.5/localhost.tar.gz /app/hosts/localhost.tar.gz
 
 
 RUN tar -zxf /app/fave.linux-amd64.tar.gz -C /app && \
 RUN tar -zxf /app/fave.linux-amd64.tar.gz -C /app && \
  tar -zxf /app/hosts/localhost.tar.gz -C /app/hosts && \
  tar -zxf /app/hosts/localhost.tar.gz -C /app/hosts && \

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-VERSION="1.0.4"
+VERSION="1.0.5"
 
 
 default: debug test run
 default: debug test run
 
 

+ 11 - 11
assets/cp.styles.css

@@ -377,24 +377,24 @@ ul.pagination {
 	left: 0px;
 	left: 0px;
 	border-radius: 1.5rem;
 	border-radius: 1.5rem;
 	background: rgba(19, 191, 17, 0);
 	background: rgba(19, 191, 17, 0);
-	-moz-transition: .20s ease-in-out;
-	-webkit-transition: .20s ease-in-out;
-	transition: .20s ease-in-out;
+	-moz-transition: .10s ease-in-out;
+	-webkit-transition: .10s ease-in-out;
+	transition: .10s ease-in-out;
 }
 }
 
 
 .checkbox-ios input[type=checkbox] + label:after {
 .checkbox-ios input[type=checkbox] + label:after {
 	content: "";
 	content: "";
 	position: absolute;
 	position: absolute;
 	display: block;
 	display: block;
-	height: 28px;
-	width: 28px;
-	top: 1px;
-	left: 1px;
+	height: 26px;
+	width: 26px;
+	top: 2px;
+	left: 2px;
 	border-radius: 1.5rem;
 	border-radius: 1.5rem;
 	background: #fff;
 	background: #fff;
-	-moz-transition: .20s ease-in-out;
-	-webkit-transition: .20s ease-in-out;
-	transition: .20s ease-in-out;
+	-moz-transition: .10s ease-in-out;
+	-webkit-transition: .10s ease-in-out;
+	transition: .10s ease-in-out;
 }
 }
 
 
 .checkbox-ios input[type=checkbox]:checked + label:before {
 .checkbox-ios input[type=checkbox]:checked + label:before {
@@ -403,7 +403,7 @@ ul.pagination {
 }
 }
 
 
 .checkbox-ios input[type=checkbox]:checked + label:after {
 .checkbox-ios input[type=checkbox]:checked + label:after {
-	left: 31px;
+	left: 32px;
 }
 }
 
 
 /* Bootstrap fixes */
 /* Bootstrap fixes */

File diff suppressed because it is too large
+ 0 - 0
assets/cp.styles.css.go


+ 2 - 2
consts/consts.go

@@ -4,8 +4,8 @@ import (
 	"html/template"
 	"html/template"
 )
 )
 
 
-const ServerVersion = "1.0.4"
-const AssetsVersion = "19"
+const ServerVersion = "1.0.5"
+const AssetsVersion = "21"
 const AssetsPath = "assets"
 const AssetsPath = "assets"
 const DirIndexFile = "index.html"
 const DirIndexFile = "index.html"
 
 

Some files were not shown because too many files changed in this diff