1234567891011121314151617181920212223242526272829303132333435363738 |
- /* load the default Redmine stylesheet */
- @import url(../../../stylesheets/application.css);
- /* move the project menu to the right
- #main-menu {
- left: auto;
- right: 0px;
- }
- */
- tr.project td.name a {
- white-space: normal;
- }
- tr.issue td.project {
- white-space: initial;
- max-width: 23em;
- }
- #quick-search {
- float:left;
- width:100%;
- }
- #quick-search select {
- width: 30%;
- }
- @media screen and (max-width: 899px) {
- #header #quick-search select {
- color: #333 !important;
- }
- }
- .tabular #all_attributes select {
- width:100%;
- }
|