mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 07:36:12 +08:00
Summary: Themes can now be uninstalled by clicking a button in the theme picker, instead of going to `~/.nylas/packages` to delete the directory. Test Plan: Tested locally. Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2700
25 lines
430 B
Text
25 lines
430 B
Text
@import "ui-variables";
|
|
|
|
.theme-picker {
|
|
text-align: center;
|
|
cursor: default;
|
|
iframe {
|
|
pointer-events: none;
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
.theme-uninstall-x {
|
|
float: right;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: -40px;
|
|
margin-right: 10px;
|
|
-webkit-filter: none;
|
|
}
|
|
.clickable-theme-option {
|
|
cursor: pointer;
|
|
width: 115px;
|
|
margin: 2px;
|
|
top: -10px;
|
|
}
|
|
}
|