my tile menu is, ok, the secpanel button is ok, it starts the secpanel in a popup, thats ok , but the secpanel inside the popup is a little bit to long, it gives a slider
these css of special blocks gives me the creeps,
I tried several css statements, but none of them do work!
settings js
Code: Select all
settings js
// BUTTONS TILEMENU
var buttons = {}
/* this parts works ok */
buttons.secpan= {key: "Secpan",width:1, title:"",icon: 'fas fa-key', popup: 'secpanel', framewidth:1010,frameheight:750}
settings css
/* this parts works ok */
.button[data-id='Secpan'] {height: 50px !important;flex-direction: column !important;padding-top: 10px !important;background-color: transparent!important;} .button[data-id='Secpan'] .col-icon {font-size: 30px !important; color: white !important;}
/* this parts does not works, de content of the popup is bigger then the frame, i got an unwanted vertical slider , so this part is nor read */
.secpanel {background-color: rgba(87, 64, 56, 1) !important; height: 90%;overflow-y: auto;}
/* also tried this, and does not work */
div[data-id='secpanel'] {height: 90%;overflow-y: auto;}
/* also tried this, and does not work */
div[data-id='secpanel'] {height: 600px !important;}
/* also tried, and does not work */
[data-id='secpanel'].frame iframe {
transform: scale(0.5);
border: 5px;
height: 200px !important;
width: 100%;
max-width: 100%;
transform-origin: 0 0;
}