Fixes annoyances with the UI of Nifty.
Nifty PM - visual fixes by DyaniPerson

Details
AuthorDyaniPerson
LicenseNo License
Categorynifty.pm
Created
Updated
Code size805 B
Code checksum43fa8c53
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
- Increases visibility and padding of task description box
- Enhances drop shadow of task slide-in panel
Source code
/* ==UserStyle==
@name nifty.pm
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Fixes annoyances with the UI of Nifty.
@author DyaniPerson
==/UserStyle== */
@-moz-document domain("nifty.pm") {
}
/* emphasized description box in a task */
.description-pane.can-edit {
outline: 3px solid transparent; /* Hide default outline */
padding: 30px;
background-color: #2c2d38;
border-left: 3px solid;
border-image: linear-gradient(to bottom, #af0e0e, #b4790c, #b4b410, #108b10, #0f0f90, #560d8b, #981498) 1 1;
border-radius: 5px; /* Add rounded corners */
margin-bottom: 15px; /* Add 15px margin below */
}
/* Subtle gray drop shadow for task window*/
.content-panel-holder {
box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}