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.

133 lines
3.3 KiB

4 days ago
.estimator-table {
font-family: monospace;
}
.estimator-table summary {
padding: .5rem;
cursor: pointer;
}
.estimator-table summary::marker {
font-size: 0.7rem;
}
.estimator-table details[open] {
padding-left: 0.1rem;
padding-right: 0.1rem;
padding-bottom: 0.3rem;
}
.estimator-table .parameters-table {
margin-left: auto !important;
margin-right: auto !important;
margin-top: 0;
}
.estimator-table .parameters-table tr:nth-child(odd) {
background-color: #fff;
}
.estimator-table .parameters-table tr:nth-child(even) {
background-color: #f6f6f6;
}
.estimator-table .parameters-table tr:hover {
background-color: #e0e0e0;
}
.estimator-table table td {
border: 1px solid rgba(106, 105, 104, 0.232);
}
/*
`table td`is set in notebook with right text-align.
We need to overwrite it.
*/
.estimator-table table td.param {
text-align: left;
position: relative;
padding: 0;
}
.user-set td {
color:rgb(255, 94, 0);
text-align: left !important;
}
.user-set td.value {
color:rgb(255, 94, 0);
background-color: transparent;
}
.default td {
color: black;
text-align: left !important;
}
.user-set td i,
.default td i {
color: black;
}
/*
Styles for parameter documentation links
We need styling for visited so jupyter doesn't overwrite it
*/
a.param-doc-link,
a.param-doc-link:link,
a.param-doc-link:visited {
text-decoration: underline dashed;
text-underline-offset: .3em;
color: inherit;
display: block;
padding: .5em;
}
/* "hack" to make the entire area of the cell containing the link clickable */
a.param-doc-link::before {
position: absolute;
content: "";
inset: 0;
}
.param-doc-description {
display: none;
position: absolute;
z-index: 9999;
left: 0;
padding: .5ex;
margin-left: 1.5em;
color: var(--sklearn-color-text);
box-shadow: .3em .3em .4em #999;
width: max-content;
text-align: left;
max-height: 10em;
overflow-y: auto;
/* unfitted */
background: var(--sklearn-color-unfitted-level-0);
border: thin solid var(--sklearn-color-unfitted-level-3);
}
/* Fitted state for parameter tooltips */
.fitted .param-doc-description {
/* fitted */
background: var(--sklearn-color-fitted-level-0);
border: thin solid var(--sklearn-color-fitted-level-3);
}
.param-doc-link:hover .param-doc-description {
display: block;
}
.copy-paste-icon {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNy4yIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjUgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTIwOCAwTDMzMi4xIDBjMTIuNyAwIDI0LjkgNS4xIDMzLjkgMTQuMWw2Ny45IDY3LjljOSA5IDE0LjEgMjEuMiAxNC4xIDMzLjlMNDQ4IDMzNmMwIDI2LjUtMjEuNSA0OC00OCA0OGwtMTkyIDBjLTI2LjUgMC00OC0yMS41LTQ4LTQ4bDAtMjg4YzAtMjYuNSAyMS41LTQ4IDQ4LTQ4ek00OCAxMjhsODAgMCAwIDY0LTY0IDAgMCAyNTYgMTkyIDAgMC0zMiA2NCAwIDAgNDhjMCAyNi41LTIxLjUgNDgtNDggNDhMNDggNTEyYy0yNi41IDAtNDgtMjEuNS00OC00OEwwIDE3NmMwLTI2LjUgMjEuNS00OCA0OC00OHoiLz48L3N2Zz4=);
background-repeat: no-repeat;
background-size: 14px 14px;
background-position: 0;
display: inline-block;
width: 14px;
height: 14px;
cursor: pointer;
}