liuyg
2021-07-02 25ce610f6ecca7325e7a743dc032c4a76559c63d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* dojox.mobile.SearchBox */
@import url("TextBox-compat.css");
 
.mblSearchBox {
  height: auto;
}
 
/* CSS class for the parent DIV of the dojox/mobile/SearchBox used for filtering a 
  dojox/mobile/RoundRectList or subclass. This class is set by dojox/mobile/FilteredListMixin 
  only if the mixin creates the SearchBox by itself. */
.mblFilteredRoundRectListSearchBox {
  width: 100%;
  padding-left: 9px;
  padding-right: 9px;
  -moz-box-sizing: border-box;
}
 
.mblFilteredRoundRectListSearchBox > input {
  width: 100%;
}
 
/* CSS class for the parent DIV of the dojox/mobile/SearchBox used for filtering a 
  dojox/mobile/EdgeToEdgeList or subclass. This class is set by dojox/mobile/FilteredListMixin 
  only if the mixin creates the SearchBox by itself. */
.mblFilteredEdgeToEdgeListSearchBox {
  width: 100%;
}
 
.mblFilteredEdgeToEdgeListSearchBox > input {
  width: 100%;
}