Iterate PR; tidy and improve widget context menu

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-10-15 15:24:42 +01:00
parent f5479d87fe
commit f198b95579
7 changed files with 76 additions and 22 deletions

View file

@ -141,12 +141,6 @@ limitations under the License.
box-sizing: border-box;
min-width: 24px; // prevent flexbox crushing
.mx_AccessibleTooltipButton_container {
// TODO
position: absolute;
top: -50px;
}
&:hover {
&::after {
content: '';

View file

@ -98,12 +98,16 @@ $MiniAppTileHeight: 200px;
}
}
// TODO this should be 300px but that's too large
$MinWidth: 240px;
.mx_AppsDrawer_has2 .mx_AppTile {
width: 50%;
&:nth-child(3) {
flex-grow: 1;
width: 0;
width: 0 !important;
min-width: $MinWidth !important;
}
}
.mx_AppsDrawer_has3 .mx_AppTile {
@ -111,13 +115,14 @@ $MiniAppTileHeight: 200px;
&:nth-child(3) {
flex-grow: 1;
width: 0;
width: 0 !important;
min-width: $MinWidth !important;
}
}
.mx_AppTile {
width: 50%;
min-width: 200px;
min-width: $MinWidth;
border: 8px solid $widget-menu-bar-bg-color;
border-left-width: 5px;
border-right-width: 5px;