0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FileMakerServer13の管理コンソールをStylish使って少し見やすくする

Posted at

前書き

当協会では悲しいことにいまだにFileMakerServer 13を動かしているのですが、管理コンソールのファイル一覧が高さが足りずにたいへん見づらいです。もっと一覧性を!

今までずっと、見づらい見づらいと思いながらも我慢していたのですが、いよいよ本日、我慢しきれなくなりましたので、ChromeExtensionのStylishを使って、heightを広げて見やすくしてみました。

宛てたCSS

.v-tabsheet-content,
.v-tabsheet.v-widget.v-has-width {
  height: 100% !important;
}

.v-tabsheet-tabsheetpanel,
.v-splitpanel-vertical.v-splitpanel-vertical.v-widget.v-has-width.v-has-height,
.v-tabsheet-content > .v-tabsheet-tabsheetpanel > .v-scrollable > .v-verticallayout.v-layout.v-vertical.v-widget.v-has-width .v-splitpanel-first-container.sv-scrollable {
  height: 1000px !important;
}

before

image.png

after

image.png

……見やすくなったはずです!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?