# wpgetapi/2.2.10/lib/cmb2/css/sass/partials/_collapsible_ui.scss

WPGet API – Connect to any external REST API, version 2.2.10. 57 lines.

- Page: https://pluginprobe.com/plugins/wpgetapi/2.2.10/code/lib/cmb2/css/sass/partials/_collapsible_ui.scss
- Raw: https://pluginprobe.com/plugins/wpgetapi/2.2.10/raw/lib/cmb2/css/sass/partials/_collapsible_ui.scss
- Modified: 2021-11-01T02:27:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpgetapi/2.2.10/code/lib/cmb2/css/sass/partials/_collapsible_ui.scss#L10-L20`.

```scss
/*--------------------------------------------------------------
 * Collapsible UI
--------------------------------------------------------------*/

.cmb2-metabox {
	.cmbhandle {
		color: $gray;
		float: right;
		width: 27px;
		height: 30px;
		cursor: pointer;
		right: -1em;
		position: relative;
		&:before {
			content: '\f142';
			right: 12px;
			font: normal 20px/1 'dashicons';
			speak: none;
			display: inline-block;
			padding: 8px 10px;
			top: 0;
			position: relative;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			text-decoration: none !important;
		}
	}

	.postbox.closed {
		.cmbhandle {
			&:before {
				content: '\f140';
			}
		}
	}

	button.dashicons-before.dashicons-no-alt.cmb-remove-group-row {
		-webkit-appearance: none !important;
		background: none !important;
		border: none !important;
		position: absolute;
		left: 0;
		top: .5em;
		line-height: 1em;
		padding: 2px 6px 3px;
		opacity: .5;
		&:not([disabled]) {
			cursor: pointer;
			color: $dark-red;
			opacity: 1;
			&:hover {
				color: $red;
			}
		}
	}
}

```
