diff --git a/modules/docs/src/Volo.Docs.Admin.Web/Pages/Docs/Admin/Documents/index.js b/modules/docs/src/Volo.Docs.Admin.Web/Pages/Docs/Admin/Documents/index.js index a1ff58ff63..18390a251a 100644 --- a/modules/docs/src/Volo.Docs.Admin.Web/Pages/Docs/Admin/Documents/index.js +++ b/modules/docs/src/Volo.Docs.Admin.Web/Pages/Docs/Admin/Documents/index.js @@ -203,31 +203,31 @@ $(function () { }, }, { - target: 0, + target: 1, data: 'projectName', }, { - target: 1, + target: 2, data: 'name', }, { - target: 2, + target: 3, data: 'version', }, { - target: 3, + target: 4, data: 'languageCode', }, { - target: 4, + target: 5, data: 'fileName', }, { - target: 5, + target: 6, data: 'format', }, { - target: 6, + target: 7, data: 'creationTime', render: function (creationTime) { if (!creationTime) { @@ -238,7 +238,7 @@ $(function () { }, }, { - target: 7, + target: 8, data: 'lastUpdatedTime', render: function (lastUpdatedTime) { if (!lastUpdatedTime) { @@ -249,7 +249,7 @@ $(function () { }, }, { - target: 8, + target: 9, data: 'lastSignificantUpdateTime', render: function (lastSignificantUpdateTime) { if (!lastSignificantUpdateTime) { @@ -260,7 +260,7 @@ $(function () { }, }, { - target: 9, + target: 10, data: 'lastCachedTime', render: function (lastCachedTime) { if (!lastCachedTime) { diff --git a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.css b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.css index 454e6eb742..cd0ee8e064 100644 --- a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.css +++ b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.css @@ -2,3 +2,7 @@ margin-top: 1.5em !important; background: rgba(233, 237, 241, 0.34) !important; padding: 1px !important; } + +.input-group .input-group-text{ + background-color: transparent!important; +} \ No newline at end of file diff --git a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.min.css b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.min.css index 86f286308a..3f6ed60f02 100644 --- a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.min.css +++ b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.min.css @@ -1 +1 @@ -.code-toolbar .line-highlight{margin-top:1.5em !important;background:rgba(233,237,241,.34) !important;padding:1px !important;} \ No newline at end of file +.code-toolbar .line-highlight{margin-top:1.5em !important;background:rgba(233,237,241,.34) !important;padding:1px !important;} .input-group .input-group-text{background-color: transparent!important;} \ No newline at end of file diff --git a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.scss b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.scss index 485c6cd881..384d025602 100644 --- a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.scss +++ b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.scss @@ -5,3 +5,9 @@ padding: 1px !important; } } + +.input-group{ + .input-group-text{ + background-color: transparent!important; + } +} \ No newline at end of file