Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add prefix to prevent override #96

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,54 +1,16 @@
.tab {
flex: 1;
padding: 10px;
border-radius: 3px;
text-align: center;
cursor: pointer;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: normal;
color: #fdfdfe;
margin: 1px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
border: solid 1px var(--blue-darken-62);
background-color: var(--blue-base-65);
.qwm .upload-yaml-button {
outline: none;
background-color: var(--color-grey-225-10-97);
border: 1px solid var(--color-grey-225-10-75);
border-radius: 4px;
margin: 2px 32px 6px 12px;
padding: 2px 6px 2px 6px;
fill: var(--add-entry-fill-color);
}

.tab.active {
background-color: var(--blue-darken-55);
.qwm .upload-yaml-button:hover {
color: white;
border: 1px solid white;
background-color: var(--color-blue-205-100-50);
fill: var(--add-entry-hover-fill-color);
}

.tab:hover {
border: solid 1px var(--blue-darken-55);
background-color: var(--blue-darken-62);
}

.tabButtonsContainer {
display: flex;
flex-direction: row;
align-items: center;
overflow: auto;
min-width: 120px;
max-height: 263px;
direction: ltr;
}


.upload-yaml-button {
outline: none;
background-color: var(--color-grey-225-10-97);
border: 1px solid var(--color-grey-225-10-75);
border-radius: 4px;
margin: 2px 32px 6px 12px;
padding: 2px 6px 2px 6px;
fill: var(--add-entry-fill-color);
}

.upload-yaml-button:hover {
color: white;
border: 1px solid white;
background-color: var(--color-blue-205-100-50);
fill: var(--add-entry-hover-fill-color);
}
69 changes: 31 additions & 38 deletions components/bpmn-q/modeler-component/modeler.css
Original file line number Diff line number Diff line change
@@ -1,54 +1,47 @@
.resize {
position: absolute;
bottom: 45px;
right: 0;
}

.xml-viewer-button {
position: absolute;
bottom: 45px;
left: 20px;
z-index: 2;
.qwm .resize {
position: absolute;
bottom: 45px;
right: 0;
}

.ace_editor.ace-tm {
width: 99%;
top: 0%;
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
width: 99%;
top: 0%;
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
}

#properties {
cursor: default;
cursor: default;
}

#properties::before {
content: '';
position: absolute;
cursor: w-resize;
content: "";
position: absolute;
cursor: w-resize;
}

body {
overflow-y: hidden;
#editor_wrap {
position: relative;
border-bottom: 1px solid #222222;
}

#editor_wrap {
position: relative;
border-bottom: 1px solid #222222;
.qwm-body {
overflow-y: hidden;
}

#editor_dragbar {
position: absolute;
top: 200;
/* Adjust the initial top position as needed */
left: 0;
right: 0;
background-color: #222222;
height: 3px;
cursor: row-resize;
opacity: 1;
z-index: 3;
}
position: absolute;
top: 200;
/* Adjust the initial top position as needed */
left: 0;
right: 0;
background-color: #222222;
height: 3px;
cursor: row-resize;
opacity: 1;
z-index: 3;
}
Loading