Create a simplified view of Habitica that removes the header and rewards and has options to remove other distracting elements (e.g., gems, coins, messages) if the comment tags are removed.
Habitica Task View by ansley265
Details
Authoransley265
LicenseNo License
Categoryhabitica
Created
Updated
Size1.5 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Habitica Task View
@version 20220222.19.40
@namespace userstyles.world/user/ansley265
@description Create a simplified view of Habitica that removes the header and rewards and has options to remove other distracting elements (e.g., gems, coins, messages) if the comment tags are removed.
@author ansley265
@license No License
==/UserStyle== */
@-moz-document domain("habitica.com") {
/*Create a simplified view of Habitica that removes the header and rewards and has options to remove other discracting elements (e.g., gems, coins, messages) if the comment tags are removed*/
/*Hide header (includedes purple background, avatar, and party)*/
#app-header {
display: none !important;
}
/*move task creation icon down*/
div.create-task-area {
margin-top: 35px !important;
right: 40px !important;
}
/* remove rewards column and re-size remaining columns*/
@media (min-width: 992px) {
.col-lg-3 {
flex: 0 0 33%;
max-width: 33%;
}
}
/*condense task boxes*/
/*
.task-title,
.task-content {
padding: 0px !important;
}
*/
/*hide all icons on upper right*/
/*
.item-with-icon{
display: block!important;
visibility: hidden!important;
}
*/
/*hide only message icon on upper right*/
/*
.habitica-menu-dropdown.dropdown.item-notifications {
visibility: hidden!important;
}
*/
/*hide only game / currency icons on upper right*/
/*
.currency-tray {
visibility: hidden!important;
}*/
}