~vono22/cookiekeeper/1.9.0

« back to all changes in this revision

Viewing changes to cookiekeeper/chrome/skin/unix/iradio.css

  • Committer: Yvon Tanguy
  • Date: 2016-04-19 17:32:48 UTC
  • Revision ID: vono22@yahoo.fr-20160419173248-bf1kb8b7cfk7lpic
ESLint: Fix some warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * CookieKeeper - a Mozilla add-on
 
3
 * (c) 2013-2016 Yvon TANGUY
 
4
 *
 
5
 * This Source Code Form is subject to the terms of the Mozilla Public
 
6
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 
7
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
8
 */
 
9
 
 
10
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
 
11
@namespace xbl url("http://www.mozilla.org/xbl"); /* namespace for XBL elements */
 
12
 
 
13
iradio {
 
14
  transition-property: background-color, border-color;
 
15
  transition-duration: 150ms;
 
16
}
 
17
 
 
18
iradio[selected="true"] {
 
19
  background-color: Highlight;
 
20
}
 
21
 
 
22
iradio:hover {
 
23
  background-color: Background;
 
24
}
 
25
 
 
26
iradio[selected="true"]:hover {
 
27
  background-color: Highlight;
 
28
}