Changeset 15075
- Timestamp:
- 03/08/10 11:39:18 (2 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 10 edited
- 3 moved
-
Xul_Commons/modules/scenariCommons/commons/system.jsm (modified) (1 diff)
-
Xul_Core/content/scenariCore-platform/mac/widgets/matrix/matrix.xbl.css (modified) (3 diffs)
-
Xul_Core/content/scenariCore/widgets/matrix/matrix.xbl.css (modified) (3 diffs)
-
Xul_Wsp/content/scenariWsp-platform/mac/desks/wspDesk/wspDesk.css (modified) (1 diff)
-
Xul_Wsp/content/scenariWsp-platform/mac/views/searchView/criterions.xbl.css (added)
-
Xul_Wsp/content/scenariWsp-platform/mac/views/searchView/results.xbl.css (moved) (moved from trunk/Xul_Wsp/content/scenariWsp-platform/mac/views/searchView/searchView.xbl.css) (1 diff)
-
Xul_Wsp/content/scenariWsp-platform/mac/windows/itemSelector/selItem.css (modified) (1 diff)
-
Xul_Wsp/content/scenariWsp-platform/unix/views/searchView/criterions.xbl.css (added)
-
Xul_Wsp/content/scenariWsp-platform/unix/views/searchView/results.xbl.css (moved) (moved from trunk/Xul_Wsp/content/scenariWsp-platform/unix/views/searchView/searchView.xbl.css)
-
Xul_Wsp/content/scenariWsp-platform/win/views/searchView/criterions.xbl.css (added)
-
Xul_Wsp/content/scenariWsp-platform/win/views/searchView/results.xbl.css (moved) (moved from trunk/Xul_Wsp/content/scenariWsp-platform/win/views/searchView/searchView.xbl.css)
-
Xul_Wsp/content/scenariWsp/desks/wspDesk/wspDesk.xul (modified) (1 diff)
-
Xul_Wsp/content/scenariWsp/views/searchView/criterions.xbl.xml (modified) (3 diffs)
-
Xul_Wsp/content/scenariWsp/views/searchView/results.xbl.xml (modified) (1 diff)
-
Xul_Wsp/content/scenariWsp/views/treeItemnetView/treeItemnetView.xbl.css (modified) (1 diff)
-
Xul_Wsp/content/scenariWsp/windows/itemSelector/selItem.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Xul_Commons/modules/scenariCommons/commons/system.jsm
r14686 r15075 53 53 */ 54 54 system.isWin = vOs.indexOf("win")>=0; 55 system.isMac = vOs.indexOf("mac")>=0 ;55 system.isMac = vOs.indexOf("mac")>=0 || vOs.indexOf("darwin")>=0; 56 56 system.isUnix = vOs.indexOf("linux")>=0 || vOs.indexOf("unix")>=0 || vOs.indexOf("sun")>=0; 57 57 -
trunk/Xul_Core/content/scenariCore-platform/mac/widgets/matrix/matrix.xbl.css
r15030 r15075 7 7 -moz-border-top-colors: gray; 8 8 } 9 slotResizer[state="collapsed"] { 10 background: -moz-linear-gradient(left, threedface,gray,threedface); 11 } 12 slotResizer[orient="vertical"][state="collapsed"] { 13 background: -moz-linear-gradient(top, threedface,gray,threedface); 14 } 15 16 9 17 hbox[anonid=tabsContainer]:empty{ 10 18 -moz-border-bottom-colors: gray; … … 24 32 slotTab.selectedTab, 25 33 slotTabContent.selectedTab{ 34 background: -moz-linear-gradient(top, white,ThreeDFace); 26 35 -moz-border-right-colors: gray; 27 36 -moz-border-left-colors: gray; 28 37 -moz-border-top-colors: gray; 38 -moz-border-bottom-colors: ThreeDFace; 29 39 } 30 40 hbox[anonid=buttonsBar]{ … … 40 50 -moz-border-top-colors: gray; 41 51 } 52 slotTabContent *[anonid=tabToolBar]{ 53 background: -moz-linear-gradient(top, white,ThreeDFace); 54 -moz-box-shadow: silver -1px 1px 2px 1px ; 55 } -
trunk/Xul_Core/content/scenariCore/widgets/matrix/matrix.xbl.css
r15048 r15075 92 92 93 93 /* ======================== toolbarbutton ======================== */ 94 /* general toolbar button style : 16x16 icon only on all platforms */ 94 95 toolbarbutton { 95 96 -moz-appearance: none !important; 97 margin: 0px 0px 0px 0px; 96 98 padding: 0px 0px 0px 0px; 97 99 border: none !important; 98 100 width: 16px; 99 101 height: 16px; 100 margin: 0px 0px 0px 0px; 101 min-width: 0px; 102 min-width: 0px; 102 103 min-height: 0px; 103 104 } 104 105 toolbarbutton .toolbarbutton-text{ 105 106 display:none; 107 } 108 toolbarbutton .toolbarbutton-icon{ 109 padding: 0px 0px 0px 0px; 106 110 } 107 111 … … 158 162 } 159 163 160 slotTab.firstTab,161 slotTabContent.firstTab{162 -moz-border-radius-topleft: 4px;163 }164 164 165 165 slotTab.justBeforeSelected, … … 180 180 margin-top:-1px; 181 181 } 182 slotTab.firstTab, 183 slotTabContent.firstTab{ 184 -moz-border-radius-topleft: 5px; 185 } 182 186 slotTab.selectedTab.firstTab, 183 187 slotTabContent.selectedTab.firstTab{ -
trunk/Xul_Wsp/content/scenariWsp-platform/mac/desks/wspDesk/wspDesk.css
r14707 r15075 1 /* LICENCE[[ 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1/CeCILL 2.O 3 * 4 * The contents of this file are subject to the Mozilla Public License Version 5 * 1.1 (the "License"); you may not use this file except in compliance with 6 * the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ 7 * 8 * Software distributed under the License is distributed on an "AS IS" basis, 9 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 10 * for the specific language governing rights and limitations under the 11 * License. 12 * 13 * The Original Code is kelis.fr code. 14 * 15 * The Initial Developer of the Original Code is 16 * sylvain.spinelli@kelis.fr 17 * 18 * Portions created by the Initial Developer are Copyright (C) 2009 19 * the Initial Developer. All Rights Reserved. 20 * 21 * Contributor(s): 22 * 23 * 24 * Alternatively, the contents of this file may be used under the terms of 25 * either of the GNU General Public License Version 2 or later (the "GPL"), 26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 27 * or the CeCILL Licence Version 2.0 (http://www.cecill.info/licences.en.html), 28 * in which case the provisions of the GPL, the LGPL or the CeCILL are applicable 29 * instead of those above. If you wish to allow use of your version of this file 30 * only under the terms of either the GPL or the LGPL, and not to allow others 31 * to use your version of this file under the terms of the MPL, indicate your 32 * decision by deleting the provisions above and replace them with the notice 33 * and other provisions required by the GPL or the LGPL. If you do not delete 34 * the provisions above, a recipient may use your version of this file under 35 * the terms of any one of the MPL, the GPL, the LGPL or the CeCILL. 36 * ]]LICENCE 37 */ 38 @charset "UTF-8"; 39 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 40 41 #menuitem_Quit{ 42 display : none; 1 matrix { 2 margin:3px; 43 3 } -
trunk/Xul_Wsp/content/scenariWsp-platform/mac/views/searchView/results.xbl.css
r14890 r15075 1 @charset "UTF-8"; 2 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 3 4 .searchResults { 5 border-top: 1px solid gray; 1 /* Platform specific CSS : MacOSX */ 2 results { 3 -moz-border-top-colors: gray; 6 4 } 7 5 tree { 8 border-top: 1px solidgray;6 -moz-border-top-colors: gray; 9 7 } 10 toolbarbutton > .toolbarbutton-text{11 display:none;12 }13 toolbarbutton[anonid="oSearchNext"]:hover,14 toolbarbutton[anonid="oSearchPrev"]:hover{15 opacity:0.7;16 }17 .searchLabel{18 margin-left: 5px;19 } -
trunk/Xul_Wsp/content/scenariWsp-platform/mac/windows/itemSelector/selItem.css
r15032 r15075 1 matrix { 2 margin:3px; 3 } -
trunk/Xul_Wsp/content/scenariWsp/desks/wspDesk/wspDesk.xul
r15069 r15075 77 77 <menu id="menu_Dictionaries" svcAction="actionMenuSelectDictionary"/> 78 78 <menu id="menuitem_FontSize" svcAction="actionMenuSelectFontSize"/> 79 <!-- id="menu_preferences" permet au menuitem d'apparaitre egalementdans le menu Apple sur MacOSX -->79 <!-- id="menu_preferences" permet au menuitem d'apparaitre dans le menu Apple sur MacOSX --> 80 80 <menuitem id="menu_preferences" svcAction="actionShowPreferences"/> 81 <menuitem id="menuitem_Quit" svcAction="actionCloseApp"/> 81 <!-- id="menu_FileQuitSeparator" permet au menuseparator de disparaitre sous MacOSX --> 82 <menuseparator id="menu_FileQuitSeparator"/> 83 <!-- id="menu_FileQuitItem" permet au menuitem d'apparaitre dans le menu Apple sur MacOSX --> 84 <menuitem id="menu_FileQuitItem" svcAction="actionCloseApp"/> 82 85 </menupopup> 83 86 </menu> -
trunk/Xul_Wsp/content/scenariWsp/views/searchView/criterions.xbl.xml
r15065 r15075 62 62 <resources> 63 63 <stylesheet src="chrome://scenariWsp/content/views/searchView/criterions.xbl.css"/> 64 <stylesheet src="chrome://scenariWsp-platform/content/views/searchView/criterions.xbl.css"/> 64 65 </resources> 65 66 <implementation> … … 88 89 <resources> 89 90 <stylesheet src="chrome://scenariWsp/content/views/searchView/criterions.xbl.css"/> 91 <stylesheet src="chrome://scenariWsp-platform/content/views/searchView/criterions.xbl.css"/> 90 92 </resources> 91 93 <content> … … 112 114 <resources> 113 115 <stylesheet src="chrome://scenariWsp/content/views/searchView/criterions.xbl.css"/> 116 <stylesheet src="chrome://scenariWsp-platform/content/views/searchView/criterions.xbl.css"/> 114 117 </resources> 115 118 <implementation> -
trunk/Xul_Wsp/content/scenariWsp/views/searchView/results.xbl.xml
r15060 r15075 43 43 <resources> 44 44 <stylesheet src="chrome://scenariCommons/content/widgets/tree/tree.css"/> 45 <stylesheet src="results.xbl.css"/> 45 <stylesheet src="chrome://scenariWsp/content/views/searchView/results.xbl.css"/> 46 <stylesheet src="chrome://scenariWsp-platform/content/views/searchView/results.xbl.css"/> 46 47 </resources> 47 48 <content contextmenu="_child"> -
trunk/Xul_Wsp/content/scenariWsp/views/treeItemnetView/treeItemnetView.xbl.css
r15022 r15075 93 93 toolbarbutton.descBtn[checked=true]{ 94 94 -moz-image-region: rect(16px, 16px, 32px, 0px); 95 padding-top: 0px !important; 96 padding-bottom: 0px !important; 97 -moz-padding-start: 0px !important; 98 -moz-padding-end: 0px !important; 99 background-image:none; 95 padding-top: 0px !important; 96 padding-bottom: 0px !important; 97 -moz-padding-start: 0px !important; 98 -moz-padding-end: 0px !important; 99 background-image:none; 100 background-color:transparent; 100 101 } 101 102 toolbarbutton.ascBtn[checked=true]:hover, -
trunk/Xul_Wsp/content/scenariWsp/windows/itemSelector/selItem.css
r15051 r15075 43 43 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 44 44 45 matrix { 46 margin:3px 1px 1px 1px; 47 } 45 48 itemView{ 46 49 -moz-binding: url("chrome://scenariWsp/content/widgets/refItem/refItem.xbl.xml#refItemView");
Note: See TracChangeset
for help on using the changeset viewer.