@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
50 lines (49 loc) • 1.12 kB
CSS
/*
Your use of the content in the files referenced here is subject to the terms of the license at http://aka.ms/fabric-assets-license
*/
.webPartHeader {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
}
.webPartTitle {
font-size: 20px;
font-weight: 600;
margin-bottom: 11px;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
overflow-x: hidden;
text-overflow: ellipsis;
}
.webPartTitle textarea {
background-color: transparent;
border: none;
box-sizing: border-box;
color: inherit;
display: block;
font-family: inherit;
font-size: inherit;
font-weight: 400;
height: 40px;
line-height: inherit;
margin: 0;
outline: 0;
overflow: hidden;
resize: none;
text-align: inherit;
white-space: pre;
width: 100%;
}
.webPartTitle textarea::placeholder, .webPartTitle textarea::-webkit-input-placeholder {
color: "[theme:inputPlaceholderText, default: #605e5c]";
}
.webPartTitle span a:link {
text-decoration: none;
}
.webPartTitle .moreLink {
margin-bottom: 11px;
}