mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-14 12:15:48 +02:00
Fix column icons being hidden by title with clear-columns or edit-design features on
This commit is contained in:
parent
d7f1df4995
commit
0be9465dca
Resources
@ -99,6 +99,8 @@ enabled(){
|
||||
// load custom style
|
||||
var css = window.TDPF_createCustomStyle(this);
|
||||
css.insert(".js-app-add-column.is-hidden + .clear-columns-btn-all-parent { display: none; }");
|
||||
css.insert(".column-header-links { min-width: 51px !important; }");
|
||||
css.insert("[data-td-icon='icon-message'] .column-header-links { min-width: 110px !important; }");
|
||||
css.insert(".column-navigator-overflow .clear-columns-btn-all-parent { display: none !important; }");
|
||||
css.insert(".column-navigator-overflow { bottom: 224px !important; }");
|
||||
css.insert("[data-action='td-clearcolumns-dosingle'] { padding: 3px 0 !important; }");
|
||||
|
@ -221,6 +221,29 @@ a[data-full-url] {
|
||||
bottom: 0 !important;
|
||||
}
|
||||
|
||||
/**********************************************************/
|
||||
/* Prevent column icons from being hidden by column title */
|
||||
/**********************************************************/
|
||||
|
||||
.column-header-title {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.column-heading {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.column-header-links {
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
[data-td-icon="icon-message"] .column-header-links {
|
||||
min-width: 86px;
|
||||
}
|
||||
|
||||
/*******************************************/
|
||||
/* Fix general visual issues or annoyances */
|
||||
/*******************************************/
|
||||
|
Loading…
Reference in New Issue
Block a user