Fix Try action support

This commit is contained in:
Paulo Gustavo Veiga
2022-01-10 16:22:24 -08:00
parent 3bac526593
commit 86b83807f4
7 changed files with 65 additions and 39 deletions

View File

@@ -142,7 +142,7 @@ div#bottom-logo {
position: fixed;
left: 20px;
bottom: 10px;
background: url(../images/logo-text-black.svg) no-repeat;
background: url(../../images/editor/logo-text-black.svg) no-repeat;
width: 90px;
height: 40px;
}
@@ -213,4 +213,24 @@ div#shotcuts > img{
#keyboardTable th {
background-color: #000000;
color: #ffffff;
}
div#tryInfoPanel {
position: absolute;
margin: auto;
text-align: center;
top: 80px;
right: 20px;
width: 200px;
height: 300px;
padding: 20px;
font-size: 15px;
border-radius: 9px;
background-color: white;
border: solid 2px #ffa800;
}
#tryInfoPanel > p {
justify-content: center;
padding-bottom: 20px;
}

View File

@@ -39,6 +39,7 @@ div#toolbarRight {
margin: 6px 10px;
height: 100%;
}
#account {
float: right;
display: inline;
@@ -55,12 +56,11 @@ div#toolbarRight {
#share {
margin: 0 30px;
float: right;
}
.actionButton {
float: right;
cursor: pointer;
margin: 0px 10px;
font-family: Arial, Helvetica, sans-serif;
user-select: none;
vertical-align: middle;

View File

@@ -127,8 +127,6 @@ div#exportAnchor {
background-color: #000000;
padding: 5px 5px;
color: #f5f5f5;
/*font-weight: bold;*/
/*width: 100px;*/
font-size: 11px;
}
@@ -162,11 +160,7 @@ div.toolbarPanelLinkSelectedLink {
background-color: rgb(228, 226, 210);
padding: 5px 5px;
color: #f5f5f5;
/*font-weight: bold;*/
/*width: 100px;*/
font-size: 11px;
-moz-border-radius: 60px;
-webkit-border-radius: 6px;
border-radius: 6px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
border: 3px double rgb(190, 190, 190);

View File

@@ -28,3 +28,8 @@ div#mapDetails .title {
margin-right: 3px;
}
div#mindplot {
top: 0;
}