Changeset 13977
- Timestamp:
- Feb 5, 2013, 2:45:41 PM (9 years ago)
- Location:
- trunk/web
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/index.html
r13888 r13977 66 66 <span id="filter-count"> </span> 67 67 </div> 68 69 <div title="Free Space available in the Download Folder" id="freespace-info"></div>70 68 71 69 <div id='speed-info'> … … 393 391 <div id="turtle-button" title="Alternative Speed Limits"> </div> 394 392 <div id="compact-button" title="Compact View"> </div> 393 394 <div title="Free Space available in the Download Folder" id="freespace-info"></div> 395 395 </div> 396 396 -
trunk/web/javascript/transmission.js
r13884 r13977 1148 1148 1149 1149 if (this.freeSpace > 0) 1150 text = fmt.size (this.freeSpace) ;1150 text = fmt.size (this.freeSpace) + " Free"; 1151 1151 else 1152 1152 text = ''; 1153 $('#freespace-info').text( text );1153 $('#freespace-info').text( text ); 1154 1154 1155 1155 // visible torrents -
trunk/web/style/transmission/common.css
r13884 r13977 144 144 #statusbar #speed-info #speed-up-container, #statusbar #speed-info #speed-dn-container { 145 145 display: inline; } 146 #statusbar #freespace-info {147 float: right;148 margin-top: 5px;149 margin-right: 10px;150 display: inline; }151 #statusbar #freespace-info * {152 display: inline-block; }153 146 154 147 /*** … … 958 951 background-position: center; 959 952 background-repeat: no-repeat; } 953 div.torrent_footer #freespace-info { 954 float: right; 955 text-align: right; 956 border: 0px; 957 width: 100px; } 960 958 961 959 /**** -
trunk/web/style/transmission/common.scss
r13884 r13977 245 245 #speed-up-container, #speed-dn-container { 246 246 display: inline; 247 }248 }249 250 #freespace-info251 {252 float: right;253 margin-top: 5px;254 margin-right: 10px;255 display: inline;256 257 * {258 display: inline-block;259 247 } 260 248 } … … 808 796 @include buttonImage('images/compact.png', $idle-color-top, $idle-color-bottom, $active-color-top, $active-color-bottom); 809 797 } 798 799 #freespace-info { 800 float: right; 801 text-align: right; 802 border: 0px; 803 width: 100px; 804 } 810 805 } 811 806 -
trunk/web/style/transmission/mobile.css
r13884 r13977 139 139 #statusbar #speed-info #speed-up-container, #statusbar #speed-info #speed-dn-container { 140 140 display: inline; } 141 #statusbar #freespace-info {142 float: right;143 margin-top: 5px;144 margin-right: 10px;145 display: inline; }146 #statusbar #freespace-info * {147 display: inline-block; }148 141 149 142 /*** … … 884 877 background-position: center; 885 878 background-repeat: no-repeat; } 879 div.torrent_footer #freespace-info { 880 float: right; 881 text-align: right; 882 border: 0px; 883 width: 100px; } 886 884 887 885 /**** -
trunk/web/style/transmission/mobile.scss
r13884 r13977 235 235 #speed-up-container, #speed-dn-container { 236 236 display: inline; 237 }238 }239 240 #freespace-info241 {242 float: right;243 margin-top: 5px;244 margin-right: 10px;245 display: inline;246 247 * {248 display: inline-block;249 237 } 250 238 } … … 747 735 @include buttonImage('images/compact.png', $idle-color-top, $idle-color-bottom, $active-color-top, $active-color-bottom); 748 736 } 737 738 #freespace-info { 739 float: right; 740 text-align: right; 741 border: 0px; 742 width: 100px; 743 } 749 744 } 750 745
Note: See TracChangeset
for help on using the changeset viewer.