2022-08-18 08:27:13 -04:00
|
|
|
.galileo {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-height: 220px;
|
|
|
|
background-color: @galileo-bg;
|
|
|
|
color: @galileo-color;
|
|
|
|
|
|
|
|
.galileo-header {
|
|
|
|
display: flex;
|
|
|
|
background-color: @galileo-header-background;
|
|
|
|
|
|
|
|
:first-child {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.galileo-close-button {
|
|
|
|
background: transparent;
|
|
|
|
color: @galileo-color;
|
|
|
|
padding-left: @padding-sm;
|
|
|
|
padding-right: @padding-sm;
|
|
|
|
margin-left: @margin-xs;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.galileo-font-lucida {
|
|
|
|
font-family: @editor-font-lucida;
|
|
|
|
}
|
|
|
|
|
|
|
|
.galileo-font-monaco {
|
|
|
|
font-family: @editor-font-monaco;
|
|
|
|
}
|
|
|
|
|
|
|
|
.galileo-body {
|
|
|
|
padding: 5px;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
2022-08-25 10:23:53 -04:00
|
|
|
.galileo-suggestions {
|
2022-08-18 08:27:13 -04:00
|
|
|
h2 {
|
|
|
|
font-size: 120%;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 0;
|
|
|
|
margin: 5px 0;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2022-08-25 10:23:53 -04:00
|
|
|
.galileo-suggestion-body {
|
|
|
|
background-color: @content-alt-bg-color;
|
|
|
|
color: black;
|
2022-08-18 08:27:13 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 5px;
|
2022-08-25 10:23:53 -04:00
|
|
|
padding: 5px;
|
2022-08-18 08:27:13 -04:00
|
|
|
margin-bottom: 5px;
|
|
|
|
|
2022-08-25 10:23:53 -04:00
|
|
|
:first-child {
|
2022-08-18 08:27:13 -04:00
|
|
|
flex: 1;
|
2022-08-25 10:23:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.galileo-suggestion-text {
|
2022-08-18 08:27:13 -04:00
|
|
|
white-space: break-spaces;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|