66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| Copyright 2020 The Matrix.org Foundation C.I.C.
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| 
 | |
| .mx_WidgetCard {
 | |
|     height: 100%;
 | |
|     display: contents;
 | |
| 
 | |
|     .mx_AppTileFullWidth {
 | |
|         max-width: unset;
 | |
|         width: auto !important;
 | |
|         margin: 0px $container-border-width 0px $container-border-width;
 | |
|         height: 100%;
 | |
|         border: 0;
 | |
|     }
 | |
| 
 | |
|     .mx_BaseCard_header {
 | |
|         display: inline-flex;
 | |
| 
 | |
|         & > h2 {
 | |
|             margin-right: 0;
 | |
|             flex-grow: 1;
 | |
|         }
 | |
| 
 | |
|         .mx_WidgetCard_optionsButton {
 | |
|             position: relative;
 | |
|             margin-right: 44px;
 | |
|             height: 20px;
 | |
|             width: 20px;
 | |
|             min-width: 20px; // prevent crushing by the flexbox
 | |
|             padding: 0;
 | |
| 
 | |
|             &::before {
 | |
|                 content: "";
 | |
|                 position: absolute;
 | |
|                 width: 20px;
 | |
|                 height: 20px;
 | |
|                 top: 0;
 | |
|                 left: 4px;
 | |
|                 mask-repeat: no-repeat;
 | |
|                 mask-position: center;
 | |
|                 mask-size: contain;
 | |
|                 mask-image: url('$(res)/img/element-icons/room/ellipsis.svg');
 | |
|                 background-color: $secondary-content;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| .mx_WidgetCard_maxPinnedTooltip {
 | |
|     background-color: $alert;
 | |
|     color: #ffffff;
 | |
| }
 |