gpt4 book ai didi

css - 如何在 GWT 中更改 datePicker 的列表框的大小?

转载 作者:太空宇宙 更新时间:2023-11-04 12:53:14 24 4
gpt4 key购买 nike

我正在构建一个移动网站,因此我需要许多 GWT Gui 来变得更大。

例如,我的gwt移动应用中的css是这样的:

.myNormalMobileFont{
font-size: 500%;
}

.myNormalLargeFont{
font-size: 700%;
}

这是DateBox和DatePicker的CSS代码

.gwt-DateBox {
padding: 15px 16px;
border: 3px solid #ccc;
border-top: 3px solid #999;
font-size: 500%;
}
.gwt-DateBox input {
width: 8em;
}
.dateBoxFormatError {
background: #ffcccc;
}
.dateBoxPopup {
}

.gwt-DatePicker {
border: 3px solid #ccc;
border-top:3px solid #999;
cursor: default;
}
.gwt-DatePicker td,
.datePickerMonthSelector td:focus {
outline: none;
}
.datePickerDays {
width: 100%;
background: white;
}
.datePickerDay,
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
font-size: 255%;
text-align: center;
padding: 12px;
outline: none;
font-weight:bold;
color:#333;
border-right: 3px solid #EDEDED;
border-bottom: 3px solid #EDEDED;
}
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
background: #fff;
padding: 0px 12px 6px;
cursor: default;
color:#666;
font-size:210%;
font-weight:normal;
}
.datePickerDay {
padding: 12px 21px;
cursor: hand;
cursor: pointer;
}
.datePickerDayIsWeekend {
background: #f7f7f7;
}
.datePickerDayIsFiller {
color: #999;
font-weight:normal;
}
.datePickerDayIsValue {
background: #d7dfe8;
}
.datePickerDayIsDisabled {
color: #AAAAAA;
font-style: italic;
}
.datePickerDayIsHighlighted {
background: #F0E68C;
}
.datePickerDayIsValueAndHighlighted {
background: #d7dfe8;
}
.datePickerDayIsToday {
padding: 3px;
color: #fff;
background: url(images/hborder.png) repeat-x 0px -2607px;
}

.datePickerMonthSelector {
width: 100%;
padding: 3px 0 15px 0;
background: #fff;
}
td.datePickerMonth {
text-align: center;
vertical-align: middle;
white-space: nowrap;
font-size: 300%;
font-weight: bold;
color: #333;
}
.datePickerPreviousButton,
.datePickerNextButton {
font-size: 360%;
line-height: 1em;
color: #3a6aad;
cursor: hand;
cursor: pointer;
font-weight: bold;
padding: 0px 12px;
outline: none;
}

之后,GuiLook是这样的 enter image description here

你可以看到 Year 和 Month 列表框中的文本非常小,那么如何设置它们的样式以使它们变大?可能使用 font-size。

最佳答案

应该这样做:

.gwt-DatePicker .gwt-ListBox {
font-size: 200%;
}

如果我将它应用到 GWT Showcase 就可以工作:

enter image description here

关于css - 如何在 GWT 中更改 datePicker 的列表框的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26015314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com