1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Plugin admin partial

This commit is contained in:
Ryan Blenis 2019-11-02 06:27:39 -04:00
parent 72b5939a44
commit 67b6df9454
5 changed files with 126 additions and 13 deletions

View file

@ -2627,4 +2627,45 @@ a {
text-align: center;
padding: 14px;
margin: 50px auto;
}
.pluginOverlayBg {
width: 95%; /* Full width (cover the whole page) */
height: 95%; /* Full height (cover the whole page) */
margin: 10px;
background-color: rgba(0,0,0,0.8); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
position: absolute;
cursor: pointer; /* Add a pointer on hover */
filter:blur(4px);
-o-filter:blur(4px);
-ms-filter:blur(4px);
-moz-filter:blur(4px);
-webkit-filter:blur(4px);
}
.pluginOverlay {
width: 95%; /* Full width (cover the whole page) */
height: 95%; /* Full height (cover the whole page) */
margin: 10px;
background-color: #FFFFFF; /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
position: absolute;
cursor: pointer; /* Add a pointer on hover */
}
.pluginTitleBar {
padding: 4px;
height: 25px;
border-bottom: double;
font-size: 20px;
}
.pluginCloseBtn {
border: none;
outline: none;
cursor: pointer;
float: right;
position: relative;
padding: 0;
}