$border-thin: 1px solid rgb(137 128 152 / 16%);
|
|
.paragraphs {
|
position: relative;
|
}
|
|
.phrase {
|
background: var(--color-neutral-surface);
|
padding: 0.5em;
|
border-radius: var(--corner-radius-small);
|
margin-right: var(--spacing-tight);
|
margin-bottom: 10px;
|
display: table;
|
position: relative;
|
|
&.numbered::before {
|
counter-increment: phrase;
|
content: counter(phrase);
|
margin-right: 4px;
|
}
|
|
}
|
|
.phrase:focus {
|
outline: none;
|
box-shadow: none;
|
}
|
|
.name {
|
background: transparent !important;
|
margin-right: 5px;
|
-webkit-touch-callout: none;
|
user-select: none; /* Non-prefixed version, currently */
|
}
|
|
.name span {
|
background: transparent !important;
|
padding: 0 !important;
|
}
|
|
.text {
|
// should contain some style to be added to element
|
zoom: 1;
|
}
|
|
.dialoguename {
|
font-weight: bold;
|
background: var(--color-neutral-background);
|
border-radius: 5px;
|
padding: 5px;
|
margin-right: 10px;
|
-webkit-touch-callout: none;
|
user-select: none; /* Non-prefixed version, currently */
|
}
|
|
.dialoguename span {
|
background: var(--color-neutral-background) !important;
|
padding: 0 !important;
|
}
|
|
.dialoguetext {
|
// should contain some style to be added to element
|
zoom: 1;
|
cursor: text;
|
}
|
|
.scroll_container {
|
position: relative;
|
overflow: hidden auto;
|
counter-reset: phrase;
|
border: $border-thin;
|
padding: 8px;
|
}
|
|
.wrapper_header {
|
display: flex;
|
justify-content: space-between;
|
margin-bottom: 16px;
|
align-items: center;
|
|
&__buttons {
|
display: flex;
|
align-items: center;
|
|
&:only-child {
|
margin-left: auto;
|
}
|
}
|
}
|
|
.container {
|
position: relative;
|
overflow: auto;
|
counter-reset: phrase;
|
margin-top: 16px;
|
}
|
|
.withAudio {
|
margin-left: 5px;
|
}
|
|
.collapsed {
|
display: block;
|
max-width: max-content;
|
height: 1px;
|
padding: 2px;
|
user-select: none;
|
|
& > * {
|
visibility: hidden !important;
|
opacity: 0;
|
height: 1px;
|
user-select: none;
|
}
|
}
|
|
.authorFilter {
|
width: 100%;
|
min-width: 320px;
|
max-width: max-content;
|
|
&__showall {
|
display: inline-flex;
|
font-size: 14px;
|
line-height: 32px;
|
}
|
|
&__placeholder {
|
font-weight: 400;
|
font-size: 14px;
|
line-height: 16px;
|
}
|
|
&__search {
|
min-width: 318px;
|
|
&__input {
|
width: 100%;
|
height: 40px;
|
padding: 0 12px;
|
border: none;
|
border-bottom: 1px solid var(--color-neutral-border);
|
font-size: 14px;
|
line-height: 22px;
|
background: var(--color-neutral-surface);
|
outline: none;
|
}
|
}
|
|
&__select {
|
display: flex;
|
align-items: center;
|
gap: 4px;
|
|
&__item {
|
color: var(--color-neutral-content);
|
background-color: var(--color-neutral-background);
|
display: inline-flex;
|
font-weight: 400;
|
font-size: 14px;
|
line-height: 16px;
|
border-radius: 4px;
|
padding: 3px 4px;
|
}
|
}
|
}
|
|
.audio {
|
height: 32px;
|
width: 100%;
|
position: sticky;
|
top: 0;
|
z-index: 1;
|
}
|
|
.phraseContainer {
|
position: relative;
|
display: flex;
|
align-items: center;
|
margin-bottom: 0;
|
margin-left: 0;
|
}
|
|
|
// .playNewUi {
|
// user-select: none;
|
// cursor: pointer;
|
// position: absolute;
|
|
// margin-top: -0.3em;
|
// font-size: inherit;
|
// z-index: 1; // Ensure it's above other elements
|
|
// &:hover, &:active, &:focus {
|
// background: none;
|
// }
|
// }
|
|
.play {
|
user-select: none;
|
position: absolute;
|
left: -32px; // Position in the left margin space
|
top: 50%; // Center vertically relative to phrase container
|
transform: translateY(-50%); // Perfect vertical centering
|
font-size: inherit;
|
z-index: 1; // Ensure it's above other elements
|
margin-right: 5px;
|
|
// highlight play/pause buttons on interactions
|
&:active path {
|
fill: #1890ff;
|
}
|
|
// only the circle of play button highlighted
|
&:focus path:first-child {
|
fill: #1890ff;
|
}
|
}
|
|
.selectAllBtn {
|
user-select: none;
|
cursor: pointer;
|
position: absolute;
|
right: 5px;
|
top: 50%; // Center vertically
|
transform: translateY(-50%); // Perfect vertical centering
|
font-size: inherit;
|
|
&:hover, &:active, &:focus {
|
background: none;
|
}
|
|
// Match the play button interaction styles
|
&:active path {
|
fill: #1890ff;
|
}
|
|
&:focus path:first-child {
|
fill: #1890ff;
|
}
|
}
|
|
.selectAllBtnWrapper {
|
position: absolute;
|
right: 5px;
|
top: 50%;
|
transform: translateY(-50%);
|
display: inline-block;
|
}
|
|
.selectAllBtnWrapper .selectAllBtn {
|
position: static;
|
transform: none;
|
top: auto;
|
right: auto;
|
}
|
|
.selectAllLabel {
|
margin-left: 6px;
|
font-size: 13px;
|
color: var(--color-primary-text, #333);
|
vertical-align: middle;
|
white-space: nowrap;
|
}
|
|
.newUI {
|
transition: all .1s ease-out;
|
border-radius: 4px;
|
display: flex;
|
flex-wrap: wrap;
|
width: calc(100% - 36px);
|
position: relative;
|
|
&.collapsed {
|
background-color: var(--highlight-color);
|
border: 1px solid var(--highlight-color);
|
}
|
|
&:not(.collapsed) {
|
background-color: rgba(var(--background-color) / 50%);
|
border-left: 4px solid var(--highlight-color);
|
border-top: 1px solid rgb(137 128 152 / 16%);
|
border-bottom: 1px solid rgb(137 128 152 / 16%);
|
border-right: 1px solid rgb(137 128 152 / 16%);
|
padding: 8px 12px;
|
}
|
|
// Only add extra padding when select all button is present
|
&.withSelectAllButton {
|
padding-right: 40px; // Space for select all button on right
|
|
&:not(.collapsed) {
|
padding-right: 50px; // More space for select all button on right when not collapsed
|
}
|
}
|
|
.dialoguename {
|
transition: all .1s ease-out;
|
background: none;
|
font-size: 16px;
|
font-style: normal;
|
font-weight: 600;
|
line-height: 24px;
|
letter-spacing: 0.15px;
|
padding: 0
|
}
|
|
.dialoguetext {
|
transition: all .1s ease-out;
|
font-size: 14px;
|
font-style: normal;
|
font-weight: 400;
|
line-height: 20px;
|
letter-spacing: 0.25px;
|
color: var(--color-neutral-content);
|
width: 100%;
|
margin-top: 8px;
|
}
|
|
.titleWrapper {
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
width: 100%;
|
|
.time {
|
font-size: 12px;
|
font-style: normal;
|
font-weight: 600;
|
line-height: 16px;
|
letter-spacing: 0.5px;
|
color: var(--color-neutral-content-subtler);
|
}
|
}
|
|
.wrapperText {
|
position: relative;
|
|
.readingLine {
|
position: absolute;
|
bottom: 0;
|
left: 0;
|
width: 100%;
|
height: 20px;
|
pointer-events: none;
|
}
|
}
|
}
|