mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This commit removes the final vestiges of `bootstrap-btn-default` class from the codebase, by moving the relevant styles from the `bootstrap-btn` and `bootstrap-btn-default` classes to the `button-recent-filters` class.
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/*!
 | 
						|
 Software from "Bootstrap" is Copyright (c) 2011-2014 Twitter, Inc. and is provided
 | 
						|
 under the following license (the Bootstrap software has been modified):
 | 
						|
 --
 | 
						|
The MIT License (MIT)
 | 
						|
 | 
						|
Copyright (c) 2011-2014 Twitter, Inc
 | 
						|
 | 
						|
Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
of this software and associated documentation files (the "Software"), to deal
 | 
						|
in the Software without restriction, including without limitation the rights
 | 
						|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
copies of the Software, and to permit persons to whom the Software is
 | 
						|
furnished to do so, subject to the following conditions:
 | 
						|
 | 
						|
The above copyright notice and this permission notice shall be included in
 | 
						|
all copies or substantial portions of the Software.
 | 
						|
 | 
						|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
THE SOFTWARE.
 | 
						|
 */
 | 
						|
 | 
						|
/*!
 | 
						|
 * Bootstrap v3.1.1 (http://getbootstrap.com)
 | 
						|
 * Copyright 2011-2014 Twitter, Inc.
 | 
						|
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 | 
						|
 */
 | 
						|
 | 
						|
.bootstrap-btn {
 | 
						|
  display: inline-block;
 | 
						|
  padding: 6px 12px;
 | 
						|
  margin-bottom: 0;
 | 
						|
  font-size: 14px;
 | 
						|
  font-weight: normal;
 | 
						|
  line-height: 1.42857143;
 | 
						|
  text-align: center;
 | 
						|
  white-space: nowrap;
 | 
						|
  vertical-align: middle;
 | 
						|
  cursor: pointer;
 | 
						|
  -webkit-user-select: none;
 | 
						|
     -moz-user-select: none;
 | 
						|
      -ms-user-select: none;
 | 
						|
          user-select: none;
 | 
						|
  background-image: none;
 | 
						|
  border: 1px solid transparent;
 | 
						|
  border-radius: 0px;
 | 
						|
}
 | 
						|
.bootstrap-btn:focus,
 | 
						|
.bootstrap-btn:active:focus,
 | 
						|
.bootstrap-btn.active:focus {
 | 
						|
  outline: thin dotted;
 | 
						|
  outline: 5px auto -webkit-focus-ring-color;
 | 
						|
  outline-offset: -2px;
 | 
						|
}
 | 
						|
.bootstrap-btn:hover,
 | 
						|
.bootstrap-btn:focus {
 | 
						|
  color: #333;
 | 
						|
  text-decoration: none;
 | 
						|
}
 | 
						|
.bootstrap-btn:active,
 | 
						|
.bootstrap-btn.active {
 | 
						|
  background-image: none;
 | 
						|
  outline: 0;
 | 
						|
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
 | 
						|
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
 | 
						|
}
 | 
						|
.bootstrap-btn.disabled,
 | 
						|
.bootstrap-btn[disabled] {
 | 
						|
  pointer-events: none;
 | 
						|
  cursor: not-allowed;
 | 
						|
  -webkit-box-shadow: none;
 | 
						|
          box-shadow: none;
 | 
						|
  opacity: .65;
 | 
						|
}
 |