Skip to content

Commit cc956e4

Browse files
committed
27.0.9 release
1 parent bbc2e88 commit cc956e4

File tree

10 files changed

+9353
-9239
lines changed

10 files changed

+9353
-9239
lines changed

ChangeLog

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
23-MAY-2025: 27.0.9
2+
3+
- Uses per-cell container for inputs/selects in property rows [jgraph/draw#5086]
4+
5+
22-MAY-2025: 27.0.8
6+
7+
- Fixes possible notification NPE
8+
9+
22-MAY-2025: 27.0.7
10+
11+
- Restricts notifications to own diagrams.net domains [jgraph/docker-drawio#187]
12+
- [conf cloud] Removes blank and smart templates from Confluence Template diagrams [DID-14800]
13+
- [conf cloud] Fixes editor hang in Template editor [DID-14800]
14+
15+
16-MAY-2025: 27.0.6
16+
17+
- Fixes paste location to use position of mouse [drawio-desktop#2096]
18+
119
13-MAY-2025: 27.0.5
220

321
- Skips service worker install on first load

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
27.0.5
1+
27.0.9

src/main/webapp/js/app.min.js

Lines changed: 3119 additions & 3096 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/integrate.min.js

Lines changed: 2967 additions & 2944 deletions
Large diffs are not rendered by default.

src/main/webapp/js/shapes-14-6-5.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/viewer-static.min.js

Lines changed: 1605 additions & 1592 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/viewer.min.js

Lines changed: 1604 additions & 1591 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/styles/grapheditor.css

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,18 +1089,42 @@ div.geFormatContainer {
10891089
top: 16px;
10901090
}
10911091

1092-
html body div.geSmallBanner {
1093-
background-color: #F2931E;
1094-
background: linear-gradient(#F2931E 0px, #F08707 100%);
1095-
border: 1px solid #F08707;
1096-
color: #000;
1097-
}
1098-
1099-
html body div.geSmallBanner:hover:not([disabled]) {
1100-
background-color: #ffb75e;
1101-
background: linear-gradient(#ffb75e 0px, #F2931E 100%);
1102-
border: 1px solid #F08707;
1103-
color: #000;
1092+
html body div.geBtn.geSmallBanner {
1093+
border-radius: 20px;
1094+
font-size: inherit;
1095+
padding: 6px 12px 6px 20px;
1096+
display: flex;
1097+
height: auto;
1098+
bottom: 4px;
1099+
}
1100+
1101+
.geSpinnerStatus {
1102+
position: absolute;
1103+
white-space: nowrap;
1104+
border-radius: 6px;
1105+
color: #ffffff;
1106+
background: #4B4243;
1107+
transform: translate(-50%, -50%);
1108+
box-shadow: light-dark(#dddddd, transparent) 2px 2px 3px 0px;
1109+
padding: 6px 10px;
1110+
font-size: 9pt;
1111+
z-index: 2000000000;
1112+
max-width: 60%;
1113+
overflow: hidden;
1114+
text-overflow: ellipsis;
1115+
cursor: default;
1116+
}
1117+
1118+
.geSmallBanner .geLibraryButton {
1119+
background-color: light-dark(var(--primary-hover-color), var(--dark-active-accent-color));
1120+
filter: brightness(0.9);
1121+
margin-left: 6px;
1122+
opacity: 0.5;
1123+
}
1124+
1125+
.geSmallBanner .geLibraryButton:hover {
1126+
background-color: light-dark(var(--primary-hover-color), var(--dark-active-accent-color));
1127+
opacity: 1;
11041128
}
11051129

11061130
.geAlert {

0 commit comments

Comments
 (0)