Skip to content

Commit

Permalink
Merge pull request esp8266#1089 from SentinelMKX/master
Browse files Browse the repository at this point in the history
Added button:active(clicked) "animation"
  • Loading branch information
Stefan Kremser authored Apr 19, 2019
2 parents a18c293 + 4a23c77 commit 3565749
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions web_interface/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ p{
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
}

/* ERROR */
.hide {
Expand All @@ -181,7 +181,7 @@ p{
0% {opacity: 0;}
100% {opacity: 1;}
}


hr {
background: #3e4146;
Expand Down Expand Up @@ -210,7 +210,7 @@ li{
.meter_forground{
color: #fff;
padding: 4px 0;
/* + one of the colors below
/* + one of the colors below
(width will be set by the JS) */
}
.meter_green{
Expand Down Expand Up @@ -254,12 +254,12 @@ th, td {
#apTable .mac,
#apTable .vendor,
#apTable .name,

#stTable .id,
#stTable .pkts,
#stTable .lastseen,
#stTable .mac,

#nTable .id,
#nTable .vendor,
#nTable .ap,
Expand All @@ -268,7 +268,7 @@ th, td {
#ssidTable .id {
display: none;
}

.meter_background{
min-width: 45px;
}
Expand Down Expand Up @@ -316,7 +316,10 @@ nav a:hover{
}

button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
background: #42444a;
background: #42444a;
}
button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
transform: scale(.93);
}

/* Forms */
Expand Down Expand Up @@ -441,4 +444,4 @@ input[type="file"] {
.hidden-sm {
display: block;
}
}
}

0 comments on commit 3565749

Please sign in to comment.