max/min width of column
This commit is contained in:
parent
4d1053ce99
commit
2d249f6f19
|
@ -157,7 +157,8 @@ iframe,
|
||||||
}
|
}
|
||||||
.box {
|
.box {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-width: 23rem;
|
min-width: 300px;
|
||||||
|
max-width: 600px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -223,6 +224,8 @@ iframe,
|
||||||
.area-toot .emoji,
|
.area-toot .emoji,
|
||||||
.area-toot .emoji-img {
|
.area-toot .emoji-img {
|
||||||
width: 1.538rem;
|
width: 1.538rem;
|
||||||
|
height: 1.538rem;
|
||||||
|
object-fit: cover;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: -1px 0;
|
margin: -1px 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,8 +76,12 @@ function parseColumn(target, dontclose) {
|
||||||
var obj = [
|
var obj = [
|
||||||
{
|
{
|
||||||
domain: 0,
|
domain: 0,
|
||||||
type: 'local',
|
type: 'home',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
domain: 0,
|
||||||
|
type: 'local',
|
||||||
|
}
|
||||||
]
|
]
|
||||||
var json = JSON.stringify(obj)
|
var json = JSON.stringify(obj)
|
||||||
localStorage.setItem('column', json)
|
localStorage.setItem('column', json)
|
||||||
|
@ -162,6 +166,10 @@ function parseColumn(target, dontclose) {
|
||||||
if (width) {
|
if (width) {
|
||||||
var css = ' min-width:' + width + 'px;'
|
var css = ' min-width:' + width + 'px;'
|
||||||
}
|
}
|
||||||
|
var maxWidth = localStorage.getItem('max-width')
|
||||||
|
if (maxWidth) {
|
||||||
|
css = css +'max-width:' + maxWidth + 'px;'
|
||||||
|
}
|
||||||
if (acct.width) {
|
if (acct.width) {
|
||||||
var css = ' min-width:' + acct.width + 'px;max-width:' + acct.width + 'px;'
|
var css = ' min-width:' + acct.width + 'px;max-width:' + acct.width + 'px;'
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
"nativenotf": "ネイティブ通知設定",
|
"nativenotf": "ネイティブ通知設定",
|
||||||
"nnwarn": "Portableバージョンでは表示できんかも知れん。",
|
"nnwarn": "Portableバージョンでは表示できんかも知れん。",
|
||||||
"nntest": "通知テスト",
|
"nntest": "通知テスト",
|
||||||
"minwidth": "マルチカラムの最低横幅",
|
"width": "カラムの横幅",
|
||||||
"minwidthwarn": "画面全体の横幅÷コラム数で計算してそれ超してもうたら横スクロール入るで。",
|
"widthwarn": "画面全体の横幅÷カラム数で計算してそれ超してもうたら横スクロール入るで。",
|
||||||
"fixwidth": "TweetDeckの限定の最低横幅",
|
"fixwidth": "TweetDeckの限定の最低横幅",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
"above": "以上",
|
"above": "以上",
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
"nativenotf": "ネイティブ通知設定",
|
"nativenotf": "ネイティブ通知設定",
|
||||||
"nnwarn": "Portableバージョンでは表示できません。",
|
"nnwarn": "Portableバージョンでは表示できません。",
|
||||||
"nntest": "通知テスト",
|
"nntest": "通知テスト",
|
||||||
"minwidth": "マルチカラムの最低横幅",
|
"width": "カラムの横幅",
|
||||||
"minwidthwarn": "画面全体の横幅÷コラム数がこの値を超えた時、横スクロールとなります。",
|
"widthwarn": "画面全体の横幅÷カラム数がこの値を超えた時、横スクロールとなります。",
|
||||||
"fixwidth": "TweetDeckの限定の最低横幅",
|
"fixwidth": "TweetDeckの限定の最低横幅",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
"above": "以上",
|
"above": "以上",
|
||||||
|
|
|
@ -60,16 +60,27 @@ var envConstruction = [
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'width',
|
|
||||||
storage: 'width',
|
|
||||||
checkbox: false,
|
checkbox: false,
|
||||||
doubleText: false,
|
doubleText: true,
|
||||||
width: 50,
|
data: [
|
||||||
setValue: 300,
|
{
|
||||||
|
id: 'width',
|
||||||
|
storage: 'width',
|
||||||
|
width: 50,
|
||||||
|
setValue: 300,
|
||||||
|
text: { after: 'px ~ ' }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'maxWidth',
|
||||||
|
storage: 'max-width',
|
||||||
|
width: 50,
|
||||||
|
setValue: 600,
|
||||||
|
text: { after: 'px' }
|
||||||
|
}
|
||||||
|
],
|
||||||
text: {
|
text: {
|
||||||
head: '@@minwidth@@',
|
head: '@@width@@',
|
||||||
desc: '@@minwidthwarn@@',
|
desc: '@@widthwarn@@'
|
||||||
after: 'px @@above@@'
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user