如何更改按钮的大小并为其添加底色?

时间:2019-09-27 03:17:06

标签: javascript jquery css sharepoint sharepoint-2013

我想更改添加文档按钮的大小,我更改了大小,但是旁边的加号图像保持不变。我还想为其添加背景色,使其看起来更像一个按钮。请指教。

这是我当前的代码。

<style>
.ms-addnew {
font-size: 20pt ! important;
}
</style>

https://imgur.com/a/aGVghc1
供参考 按钮外观如下:https://imgur.com/a/Fi8EQWL

3 个答案:

答案 0 :(得分:1)

使用需要使用widthheightbackground-color

.ms-addnew {
  ...
  width: <value>;
  height: <value>;
  background-color: <value>;
}

答案 1 :(得分:1)

尝试引导CSS。

演示:

<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    <script type="text/javascript">
        $(function () {
            $("span:contains('new document')").addClass("badge badge-primary")
        })
    </script>

enter image description here

更新:

该脚本将bootstrap CSS应用于span元素,您可以使用开发人员工具检查文本(新文档)是否匹配,如果您熟悉JS,则可以对其进行调试。

enter image description here

答案 2 :(得分:0)

我们需要一个代码示例来帮助您更好地工作,我尝试重新创建类似于您为我们提供的图像的按钮,

HTML:

<button class='btn-info'>Post your question</button>

CSS:

.btn-info {
  background: #07a3f7;
  color: #fff;

  border: none;
  border-radius: 3px;

  font-size: 18px;

  padding: 15px 25px;
}

.btn-info:hover{
 background: #0572ad;
 transition: 0.8s background;
}

如果您使用的是,则自定义样式可能不会生效,因为会干扰。

您可以使用此代码示例here 进行检查。

您可以了解有关:hover here 的更多信息。