The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/custom-header-fix.css

19 lines
628 B

/* Fix for text truncation in header quick-access - override */
#header-quick-access ul.header-quick-access-list {
overflow: hidden !important;
overflow-x: hidden !important;
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
#header-quick-access ul.header-quick-access-list::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
#header-quick-access ul.header-quick-access-list li.current.empty {
flex: 1 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
max-width: none !important;
}