muted the switch user button until it's hovered over
This commit is contained in:
parent
c47f296f17
commit
0213c81e0d
3 changed files with 15 additions and 3 deletions
9
public/css/app.css
vendored
9
public/css/app.css
vendored
|
@ -273,11 +273,18 @@ body {
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
margin-right: -12px;
|
margin-right: -10px;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
width: calc(100% + 22px);
|
width: calc(100% + 22px);
|
||||||
|
background: rgba(255, 255, 255, 0.15);
|
||||||
|
-webkit-transition: all .35s ease-in-out;
|
||||||
|
transition: all .35s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#switchuser .btn:hover {
|
||||||
|
background: #d64d55;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
|
|
2
public/mix-manifest.json
generated
2
public/mix-manifest.json
generated
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"/css/app.css": "/css/app.css?id=1dc828711282cb6af1c7",
|
"/css/app.css": "/css/app.css?id=069679353f0460295a49",
|
||||||
"/js/app.js": "/js/app.js?id=f18d23b8fc7a094a2c66"
|
"/js/app.js": "/js/app.js?id=f18d23b8fc7a094a2c66"
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,11 +34,16 @@ body {
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
margin-right: -12px;
|
margin-right: -10px;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
width: calc(100% + 22px);
|
width: calc(100% + 22px);
|
||||||
|
background: rgba(255, 255, 255, 0.15);
|
||||||
|
transition: all .35s ease-in-out;
|
||||||
|
&:hover {
|
||||||
|
background: #d64d55;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#app {
|
#app {
|
||||||
|
|
Loading…
Reference in a new issue