Skip to content

Commit

Permalink
Merge pull request #134 from dbcls/feature/fix-text
Browse files Browse the repository at this point in the history
Feature/fix text
  • Loading branch information
sasaujp authored Mar 15, 2021
2 parents 5d0797a + e4bfa8a commit 8b031d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions node/src/style/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ html {
display: inline-block;
vertical-align: middle;
background-image: url("../images/nav_icon-arrow.png");
width: 12px;
min-width: 12px;
height: 8px;
}
.legend-label {
Expand Down Expand Up @@ -1021,18 +1021,19 @@ body {
}
h3 {
font-size: 14px;
line-height: 14px;
line-height: 1.2;
padding: 8px 0;
border-bottom: 1px solid #dddee2;
.open-toggle {
float: right;
text-align: right;
display: inline-block;
}
button {
width: 100%;
text-align: left;
color: inherit;
cursor: pointer;
display: flex;
align-items: center;
}
}
.open {
Expand Down
6 changes: 3 additions & 3 deletions node/src/ts/visualizer/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ const messages = {
'detail.class.selecting': 'Selected Class',
'detail.no.selecting.classes': 'No classes currently selected.',
'focusClassDetail.class.selecting': 'Selected Class',
'classRelationsDetail.class.relates': 'Related Class',
'classRelationsDetail.class.relates': 'Related Classes',
'classRelationsDetail.class.relates.of': 'Class relating to {target}',
'classRelationsDetail.triple.with.this.class.as.subject':
'Triples whose subjects are this class',
'Predicate and object classes where instances of the class are used as subjects',
'classRelationsDetail.triple.with.this.class.as.object':
'Triples whose objects are this class',
'Predicate and object classes where instances of the class are used as objects',
'hideableWrapper.toggle.open': 'Open {target}',
'hideableWrapper.toggle.close': 'Close {target}',
'legend.label.legend': 'Legend',
Expand Down
4 changes: 2 additions & 2 deletions node/src/ts/visualizer/locales/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const messages = {
'classRelationsDetail.class.relates': '関連するクラス',
'classRelationsDetail.class.relates.of': '{target}の関連するクラス',
'classRelationsDetail.triple.with.this.class.as.subject':
'このクラスを主語とするトリプル',
'本クラスのインスタンスが主語に使われている述語と目的語のクラス',
'classRelationsDetail.triple.with.this.class.as.object':
'このクラスを目的語とするトリプル',
'本クラスのインスタンスが目的語に使われている述語と目的語のクラス',
'hideableWrapper.toggle.open': '{target}を開く',
'hideableWrapper.toggle.close': '{target}を閉じる',
'legend.label.legend': '凡例',
Expand Down

0 comments on commit 8b031d1

Please sign in to comment.